Answers for "laravel sorting collection by relationship field"

PHP
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 sorting collection by relationship field"

Browse Popular Code Answers by Language