Tags

Here is all articles with back-end tag

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.