Answers for "laravel model where in"

PHP
0

laravel model where

$post = Post::where('id', $id);

$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();
Posted by: Guest on August-19-2021
0

laravel model where in

$users = User::whereIn('id', array(1, 2, 3))->get();

$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();
Posted by: Guest on October-21-2021
-1

crrate model in laravel

php artisan make:model Flight -mcr
  #it will make model with name of Flight
  #it will also create conctroller file with FlightController name 
  #all function will present in this Controller (index, create, store, show, edit, update, destroy)
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language