“Ларавел запрос, когда” Ответ

Ларавел не в запросе

DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Lokesh003

Laravel DB запрос

$users = DB::table('users')
            ->where('votes', '>', 100)
            ->orWhere(function($query) {
                $query->where('name', 'Abigail')
                      ->where('votes', '>', 50);
            })
            ->get();
unmeego

Ларавел запрос, когда

$users = DB::table('users')
                ->when($role, function ($query, $role) {
                    $query->where('role_id', $role);
                })
                ->get();
Sparkling Sable

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

// 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

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

return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();
Suhail Khan

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

<?php

$flights = App\Models\Flight::all();

foreach ($flights as $flight) {
    echo $flight->name;
}
Suhail Khan

Ответы похожие на “Ларавел запрос, когда”

Вопросы похожие на “Ларавел запрос, когда”

Больше похожих ответов на “Ларавел запрос, когда” по PHP

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

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