soft delete get value in elqquent in laravel code example
Example 1: laravel fillable
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'title',
'slug',
'body',
'image',
'published',
'comments_open'
];
Example 2: laravel soft delete
$flights = Flight::where('active', 1)
->orderBy('name')
->take(10)
->get();