Answers for "get all data laravel"

PHP
2

get all data eloquent laravel

Blog::all();

//example usage.
$posts = Blog::all();
Posted by: Guest on October-28-2020
0

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

$users = DB::table('users')where('id','=', $userid)->get();
Posted by: Guest on October-22-2020
2

laravel where

$users = DB::table('users')
                ->whereMonth('created_at', '12')
                ->get();
Posted by: Guest on September-14-2020
0

laravel find query

return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();
Posted by: Guest on October-08-2020

Code answers related to "get all data laravel"

Browse Popular Code Answers by Language