model data to database laravel 8 code example
Example 1: laravel force delete
Product::find($id)->forceDelete();
Example 2: php artisan make model
php artisan make:model Flight
Product::find($id)->forceDelete();
php artisan make:model Flight