Answers for "db select all laravel"

PHP
6

laravel db query

$users = DB::table('users')
            ->where('votes', '>', 100)
            ->orWhere(function($query) {
                $query->where('name', 'Abigail')
                      ->where('votes', '>', 50);
            })
            ->get();
Posted by: Guest on April-30-2021
7

laravel wher in

$users = DB::table('users')
                    ->whereIn('id', [1, 2, 3])
                    ->get();
Posted by: Guest on April-30-2020
0

DB::table('users')->get();

$product = DB::table('product')->get(['id','product_name']);
Posted by: Guest on January-07-2021
-1

laravel having

$users = DB::table('users')
                ->groupBy('account_id')
                ->having('account_id', '>', 100)
                ->get();
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language