Schema::table('flights', function (Blueprint $table) {
$table->softDeletes();
});
ModelName::whereIn('id', [array of ids])
->update(['deleted_at' => now()]);
DB::table('table_name')->whereIn('id', [array of ids])
->update([
'deleted_at' => now()
]);
class Clientes extends Model{ use SoftDeletes; protected $dates = ['deleted_at'];}
$table->softDeletes();
//i will softDelete for contact
<------------1 In Contact Modal---------->
namespace AppModels;
use IlluminateDatabaseEloquentFactoriesHasFactory;
use IlluminateDatabaseEloquentModel;
use IlluminateDatabaseEloquentSoftDeletes;
class Contact extends Model
{
use HasFactory;
use SoftDeletes;
}
<---------2 create file for add delete_at column in contact table------------>
php artisan make:migration add_deleted_at_to_contacts_table
database > migration >567890874_add_deleted_at_to_contacts_table.php
<----------3 declare
$model = Contents::find( $id );
$model->delete();
use IlluminateDatabaseEloquentModel;
use IlluminateDatabaseEloquentSoftDeletes;
class Post extends Model {
use SoftDeletes;
protected $table = 'posts';
// ...
}
Namespace: use IlluminateDatabaseEloquentSoftDeletes; ->in modal
Invoking : use SoftDeletes; -> in modal
php artisan make:migration add_deleted_at_to_contacts_table
Creating a softdelete column : $table->softDeletes(); -> add_deleted_at_to_contacts_table.php
Other Important function
withTashed()->delete or nonDelete(for restore method and forcDelete method)
onlyTrashed()->delete(for view)
restore()
forceDelete()
$flights = Flight::where('active', 1)
->orderBy('name')
->take(10)
->get();