“Как написать этот запрос в красноречивом ларавеле” Ответ

Ларавел найдет запрос

// Retrieve a model by its primary key...
$flight = App\Models\Flight::find(1);

// Retrieve the first model matching the query constraints...
$flight = App\Models\Flight::where('active', 1)->first();

// Shorthand for retrieving the first model matching the query constraints...
$flight = App\Models\Flight::firstWhere('active', 1);
Suhail Khan

Как написать этот запрос в красноречивом ларавеле

Visitor::select('country')
     ->withCount('id')
     ->groupBy('country')
     ->latest()
     ->get()
  
  //or
  
  Visitor::query()->groupBy('country')->orderByDesc('count')->select('country' ,DB::raw('COUNT(1) as count'))->get()
SAMER SAEID

Ответы похожие на “Как написать этот запрос в красноречивом ларавеле”

Вопросы похожие на “Как написать этот запрос в красноречивом ларавеле”

Больше похожих ответов на “Как написать этот запрос в красноречивом ларавеле” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования