“Laravel encontrar o fallar” Código de respuesta

Laravel encontrar o fallar

use Illuminate\Database\Eloquent\ModelNotFoundException;

// Will return a ModelNotFoundException if no user with that id
try
{
    $user = User::findOrFail($id);
}
// catch(Exception $e) catch any exception
catch(ModelNotFoundException $e)
{
    dd(get_class_methods($e)); // lists all available methods for exception object
    dd($e);
}
Lokesh003

Laravel Findorfail

$model = App\Flight::where('name', 'Mike')->firstOrFail();
NachooCh

Laravel elocuente obtenga primero

// return first row by id
$user = App\User::where('id',$id)->first();
// or return directly a field
$userId = App\User::where(...)->pluck('id');
gtamborero

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

Respuestas similares a “Laravel encontrar o fallar”

Preguntas similares a “Laravel encontrar o fallar”

Más respuestas relacionadas con “Laravel encontrar o fallar” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código