eloquent where code example
Example 1: find or fail laravel
$model = App\Models\Flight::findOrFail(1);
$model = App\Models\Flight::where('legs', '>', 100)->firstOrFail();
Example 2: laravel delete where
DB::table('users')->where('id', $id)->delete();
Example 3: laravel fillable
protected $fillable = [
'title',
'slug',
'body',
'image',
'published',
'comments_open'
];
Example 4: laravel eloquent get first
$user = App\User::where('id',$id)->first();
$userId = App\User::where(...)->pluck('id');
Example 5: eloquent where in
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get()
Example 6: where () laravel Eloquent
$user = User::where("estado","=",1)->find(10);