laravel how to include relationships with hasManyThrough relationship code example
Example: eloquent relationships
$roles = App\User::find(1)->roles()->orderBy('name')->get();
$roles = App\User::find(1)->roles()->orderBy('name')->get();