@yield('metatags') @yield('css')
@if(!Auth::guest()) @include('layouts.navigation') @endif
@php $companyLogo = url('/images/gigmindslogo.png'); @endphp
Home
@if(Auth::guest())
Sign in
|
Sign Up
@else
@php $photo = DB::table('person')->where('id', '=', Auth::user()->person_id)->pluck('profile_photo')->first(); @endphp
@if($photo == null)
@else
@endif
My Profile
Logout
@csrf
@endif
@yield('content')
Back