Szukaj…
Wprowadzenie
Nowe funkcje, ulepszenia i zmiany z Laravel 5.2 do 5.3
Zmienna $ loop
Od pewnego czasu wiadomo, że obsługa pętli w Blade jest ograniczona, od 5.3 dostępna jest zmienna o nazwie $loop
@foreach($variables as $variable)
// Within here the `$loop` variable becomes available
// Current index, 0 based
$loop->index;
// Current iteration, 1 based
$loop->iteration;
// How many iterations are left for the loop to be complete
$loop->remaining;
// Get the amount of items in the loop
$loop->count;
// Check to see if it's the first iteration ...
$loop->first;
// ... Or last iteration
$loop->last;
//Depth of the loop, ie if a loop within a loop the depth would be 2, 1 based counting.
$loop->depth;
// Get's the parent `$loop` if the loop is nested, else null
$loop->parent;
@endforeach
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow