Answers for "laravel eloquent order by"

PHP
5

order By Asc in laravbel

->orderBy('id', 'DESC');
Posted by: Guest on October-05-2020
1

laravel order by

$users = DB::table('users')
         -> orderBy('name', 'desc')
         -> get();
Posted by: Guest on March-09-2021
5

laravel create model and migration

# If you would like to generate a database migration when you 
# generate the model, you may use the --migration or -m option:

php artisan make:model Flight --migration
php artisan make:model Flight -m
Posted by: Guest on April-22-2020
0

orderby in laravel

/**
 * Show the application dashboard.
 *
 * @return \Illuminate\Http\Response
 */
public function index()
{
    $messages = Message::select("*")
                            ->where('receiver_id',$id)
                            ->orderBy('created_at', 'desc')
                            ->get();
  
    dd($messages);
}
Posted by: Guest on December-22-2020
3

sort laravel eloquent

$posts = Post::orderBy('id', 'DESC')->get();
Posted by: Guest on August-20-2020
0

laravel find query

// Retrieve a model by its primary key...
$flight = App\Models\Flight::find(1);

// Retrieve the first model matching the query constraints...
$flight = App\Models\Flight::where('active', 1)->first();

// Shorthand for retrieving the first model matching the query constraints...
$flight = App\Models\Flight::firstWhere('active', 1);
Posted by: Guest on October-08-2020

Code answers related to "laravel eloquent order by"

Browse Popular Code Answers by Language