Fix typo in blade section

Added an 's' to make 'iteration' plural, since it is about the number of iterations remaining.
This commit is contained in:
Menno Renkens 2018-06-22 15:30:25 +02:00 committed by GitHub
parent bfdebb7ba1
commit c74184b22a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ Property | Description
------------- | -------------
`$loop->index` | The index of the current loop iteration (starts at 0).
`$loop->iteration` | The current loop iteration (starts at 1).
`$loop->remaining` | The iteration remaining in the loop.
`$loop->remaining` | The iterations remaining in the loop.
`$loop->count` | The total number of items in the array being iterated.
`$loop->first` | Whether this is the first iteration through the loop.
`$loop->last` | Whether this is the last iteration through the loop.