Answers for "laravel sort collectoin relationship"

PHP
1

laravel sort collection

$collection = collect([5, 3, 1, 2, 4]);

$sorted = $collection->sortDesc();

$sorted->values()->all();

// [5, 4, 3, 2, 1]
Posted by: Guest on June-11-2020
0

laravel sortby relationship column

add the code to relationship in the method of the model
   public function room(){
      return $this->hasMany(room::class,  'id')->orderBy('id', 'DESC') ;
}
Posted by: Guest on July-22-2021

Code answers related to "laravel sort collectoin relationship"

Browse Popular Code Answers by Language