Answers for "laravel use query exception"

PHP
0

laravel handle queryexception

try {
  $this->model->create($data);

} catch (Illuminate\Database\QueryException $e) {
  dd($e);

} catch (PDOException $e) {
  dd($e);
}
Posted by: Guest on April-17-2020
0

how to catch query exception in laravel 8

try { 
  $results = \DB::connection("example")
    ->select(\DB::raw("SELECT * FROM unknown_table"))
    ->first(); 
    // Closures include ->first(), ->get(), ->pluck(), etc.
} catch(\Illuminate\Database\QueryException $ex){ 
  dd($ex->getMessage()); 
  // Note any method of class PDOException can be called on $ex.
}
Posted by: Guest on December-02-2020

Browse Popular Code Answers by Language