| 1 | <?php |
||
| 14 | trait Localable |
||
| 15 | { |
||
| 16 | // -------------------------------------------------------------------------------- |
||
| 17 | // -------------------------------------------------------------------------------- |
||
| 18 | // -------------------------------------------------------------------------------- |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Scope a query to a given locale. |
||
| 22 | * |
||
| 23 | * @param \Illuminate\Database\Eloquent\Builder $query |
||
| 24 | * @param string $locale |
||
| 25 | * @param string $country |
||
| 26 | * @return \Illuminate\Database\Eloquent\Builder |
||
| 27 | */ |
||
| 28 | public function scopeLocale($query, string $locale = '',string $country='') : Builder |
||
| 37 | |||
| 38 | } |