खोज…
परिचय
लारवेल 5.2 से 5.3 तक नई सुविधाएँ, सुधार और परिवर्तन
द $ लपर चर
यह थोड़ी देर के लिए जाना जाता है कि ब्लेड में छोरों के साथ काम करना सीमित हो गया है, क्योंकि 5.3 में एक चर है जो $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
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow