laravel orm code example
Example 1: find or fail laravel
$model = App\Models\Flight::findOrFail(1);
$model = App\Models\Flight::where('legs', '>', 100)->firstOrFail();
Example 2: laravel delete where
DB::table('users')->where('id', $id)->delete();
Example 3: laravel create model
php artisan make:model Flight
php artisan make:model Flight
php artisan make:model Flight -m
Example 4: laravel make model
php artisan make:model Flight
php artisan make:model Flight -m
Example 5: update query in laravel eloquent
$data = DB::table('cart')
->where('crt_id', $id)
->update(['crt_status' =>'0']);
Example 6: laravel create or update
$flight = App\Models\Flight::updateOrCreate(
['departure' => 'Oakland', 'destination' => 'San Diego'],
['price' => 99, 'discounted' => 1]
);