laravel where clause get data from database code example
Example 1: laravel not in query
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Example 2: DB::table('users')->get();
DB::select('select * from users ');
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
DB::select('select * from users ');