Answers for "laravel for each get index"

PHP
2

loop index foreach laravel

@foreach ($teams as $key => $team)
{{ str_ordinal($key + 1) }}
@endforeach
Posted by: Guest on February-07-2021
2

php foreach get current index

$index = 0;
foreach($data as $key=>$val) {
    // Use $key as an index, or...

    // ... manage the index this way..
    echo "Index is $index\n";
    $index++;
}
Posted by: Guest on June-18-2020
0

php foreach index

Blog::whereYear('created_at', 2017)->get();
Posted by: Guest on November-11-2020

Browse Popular Code Answers by Language