| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function scopeLocale($query, string $locale = '',string $country='') : Builder |
||
| 29 | { |
||
| 30 | $locale = ! empty($locale) ? $locale : Locale::getAppOrDefaultLocale(); |
||
| 31 | $country = ! empty($country) ? $country : Locale::getAppOrDefaultCountry(); |
||
| 32 | |||
| 33 | return $query |
||
| 34 | ->whereRaw('LOWER(country) LIKE LOWER("' . $country . '")') |
||
| 35 | ->whereRaw('LOWER(locale) LIKE LOWER("' . $locale . '")'); |
||
| 36 | } |
||
| 37 | |||
| 38 | } |