Answers for "laravel controller foreach loop"

PHP
2

foreach loop laravel

foreach($data as $key => $value)
{
	dd($value);
}
Posted by: Guest on March-18-2021
0

foreach in laravel

foreach ($users as $user) {
    // stuff here
}
Posted by: Guest on March-30-2020
1

Laravel foreach loop index in controller

//If you are working with a collection you can do something like this:
foreach($collection as $item) {
    if($collection->last() == $item) {
        // last iteration
    }
}

//If you are working with an array (it also works with collections) you can do this:
foreach($array as $item) {
    if(end($array) == $item) {
        // last iteration
    }
}
Posted by: Guest on June-11-2021

Code answers related to "laravel controller foreach loop"

Browse Popular Code Answers by Language