{{-- Search form --}} {{ Form::open(['route' => 'dashboard.ticket.search', 'method' => 'get']) }} {{ Form::close() }}

{{ Auth::user()->fullName() }}

Admin
  • Settings
  • Logout
Notifications @if( count($notifications) ) @endif
    @if( count( $notifications ) ) @foreach( $notifications as $notification )
  • @if( $notification->type == 'pending' || $notification->type == 'solved' )

    #{{ $notification->ticket->id }} {{ strtolower( $notification->title ) }}

    @else

    {{ $notification->user->fullName() }} {{ strtolower( $notification->title ) }}

    @endif {{ $notification->created_at->diffForHumans() }}
  • @endforeach @else
  • No Notifications to show

  • @endif