$ php artisan make:migration add_soft_deletes_to_user_table --table="users"}
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
Schema::table('flights', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('flights', function (Blueprint $table) {
$table->dropSoftDeletes();
});
use IlluminateDatabaseEloquentSoftDeletes;class User extends Model {use SoftDeletes; protected $dates = ['deleted_at'];}
>>> $test->forceDelete();
=> true