and where laravel eloquent code example
Example 1: laravel fillable
protected $fillable = [
'title',
'slug',
'body',
'image',
'published',
'comments_open'
];
Example 2: eloquent where in
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get()
Example 3: where () laravel Eloquent
$user = User::where("estado","=",1)->find(10);
Example 4: php artisan make model
php artisan make:model Flight
Example 5: laravel where
$users = DB::table('users')
->whereDate('created_at', '2016-12-31')
->get();
Example 6: laravel find query
<?php
$flights = App\Models\Flight::all();
foreach ($flights as $flight) {
echo $flight->name;
}