Toggle navigation
About
Contact
@if(Auth::user())
Dashboard
Notifications
{{count(Auth::user()->unreadNotifications)}}
@foreach (Auth::user()->notifications as $notification) @if($notification->type == 'App\Notifications\TicketReply')
{{$notification->data['reply_user']}}
replied to a ticket
{{$notification->data['ticket_title']}}
@endif @if($notification->type == 'App\Notifications\TicketStatus')
Ticket status changed to
{{$notification->data['status']}}
{{$notification->data['ticket_title']}}
@endif @if($notification->type == 'App\Notifications\NewTicket')
New ticket created by
{{$notification->data['user_name']}}
{{$notification->data['ticket_title']}}
@endif @endforeach
@if(Auth::user()->avatar == null)
@else
@endif
{{Auth::user()->name}}
Profile Settings
Change Password
Logout
{{ csrf_field() }}
@endif @if(Auth::guest())
Login
Register
@endif
New Ticket
@yield('title')
@if(Auth::user()->hasRole('admin'))
Tickets
@else
Tickets
@endif
Admin
Staff
Clients
FAQ
Department
Setting
@yield('content')
@yield('script')