Answers for "what is softdeletes laravel"

PHP
4

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();
Posted by: Guest on October-13-2021
3

softdeletes laravel

class Clientes extends Model{    use SoftDeletes;    protected $dates = ['deleted_at'];}
Posted by: Guest on September-13-2020
1

larave Soft Deletes

Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language