laravel use softdelete
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Flight extends Model
{
    use SoftDeletes;
}
#to restore
$flight->restore();
#to query trashed models
Flight::withTrashed()
        ->where('airline_id', 1)
        ->restore();
$flights = Flight::onlyTrashed()
                ->where('airline_id', 1)
                ->get();
