@section('breadcrumbs')
    @php $segments = array_filter(explode('/', str_replace(route('voyager.dashboard'), '', Request::url()))); $url = route('voyager.dashboard'); @endphp @if(count($segments) == 0)
  1. {{ __('voyager::generic.dashboard') }}
  2. @else
  3. {{ __('voyager::generic.dashboard') }}
  4. @foreach ($segments as $segment) @php $url .= '/'.$segment; @endphp @if ($loop->last)
  5. {{ ucfirst(urldecode($segment)) }}
  6. @else
  7. {{ ucfirst(urldecode($segment)) }}
  8. @endif @endforeach @endif
@show
    • {{ Auth::user()->name }}
      {{ Auth::user()->email }}
      @if ( Auth::user()->role->name == 'athlete' || Auth::user()->role->name == 'trainer' )
      Lidbond: {{ Auth::user()->assignedTo->name }}
      @endif