Fix typos in 01_Data_Model_and_ORM.md

This commit is contained in:
Manuel Thalmann 2021-05-13 21:18:40 +02:00 committed by GitHub
parent 52c61b9c52
commit f44119ff59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,7 +266,7 @@ $last = $players->last();
## Sorting
If would like to sort the list by `FirstName` in a ascending way (from A to Z).
If you would like to sort the list by `FirstName` in an ascending way (from A to Z).
```php
// Sort can either be Ascending (ASC) or Descending (DESC)
@ -663,7 +663,7 @@ $members = Member::get()
```
[alert]
Passing a *$join* statement to will filter results further by the JOINs performed against the foreign table. It will
Passing a *$join* statement will filter results further by the JOINs performed against the foreign table. It will
**not** return the additionally joined data.
[/alert]