laravel delete code example
Example 1: how to create model in laravel
php artisan make:model Flight
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 --migration
php artisan make:model Flight -m
Example 4: laravel fillable
protected $fillable = [
'title',
'slug',
'body',
'image',
'published',
'comments_open'
];
Example 5: laravel delete
DB::table('users')->where('votes', '>', 100)->delete();
Example 6: Laravel Delete
Flight::destroy(1);
Flight::destroy(1, 2, 3);
Flight::destroy([1, 2, 3]);
Flight::destroy(collect([1, 2, 3]));