Я хочу сделать фотографию профиля на странице администратора, эта фотография находится в файле layouts.template, как я могу получить $profil
для отправки на страницу layouts.template?
@if($profil->upload!=null)
<img src="{{asset('backend/assets/img/{{$profil->upload}}.jpg')}}" alt="..." class="avatar-img rounded-circle">
@else
<img src="{{asset('backend/assets/img/mlane.jpg')}}" alt="..." class="avatar-img rounded-circle">
@endif
и я создал $ profil в UserController
$auth = Auth::user()->id;
$profil = Profil_user::where('user_id',$auth)->first();
как мне заставить мой $profil
использоваться в layouts.template