Tags

Here is all articles with back-end tag

PHP final classes
back-end
July 13, 2026 8 minutes reading time

PHP final classes

Object-oriented programming in PHP gives developers powerful inheritance features. However, not every class is designed to be extended. That’s where the final keyword comes in. A final class explicitly tells PHP that this class cannot be inherited. It protects the class from being extended and helps preserve its intended behavior. When you declare a class […]

Extract Data from Multidimensional Array
back-end
April 23, 2026 8 minutes reading time

Extract Data from Multidimensional Array

#Introduction array_column is one of my favorite functions in PHP. When you are dealing with a multidimensional array and want to extract a specific piece of data from that structure, array_column is extremely helpful. By passing the array and specifying the key name, you can extract the values of that key separately from the original […]

How to redirect in a cleaner and readable way in Laravel
back-end
April 10, 2026 8 minutes reading time

How to redirect in a cleaner and readable way in Laravel

Learn the difference between Laravel to_route() and redirect()->route() and understand when to use each method in modern Laravel applications.