removes the default scope for the deleted_at column laravel code example
Example: laravel soft delete
$flights = Flight::where('active', 1)
->orderBy('name')
->take(10)
->get();
$flights = Flight::where('active', 1)
->orderBy('name')
->take(10)
->get();