“Consulta de Laravel cuando” Código de respuesta

Laravel no en consulta

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

consulta de DB de Laravel

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

Consulta de Laravel cuando

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

Laravel Find Query

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

Laravel Find Query

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

Laravel Find Query

<?php

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

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

Respuestas similares a “Consulta de Laravel cuando”

Preguntas similares a “Consulta de Laravel cuando”

Más respuestas relacionadas con “Consulta de Laravel cuando” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código