laravel timestamp soft delete

Solutions on MaxInterview for laravel timestamp soft delete by the best coders in the world

showing results for - "laravel timestamp soft delete"
Valery
17 Jan 2019
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Model;
6use Illuminate\Database\Eloquent\SoftDeletes;
7
8class Flight extends Model
9{
10    use SoftDeletes;
11}