@extends('master.front') @section('title') {{__('Dashboard')}} @endsection @section('content')
@include('includes.user_sitebar')
{{ __('All Tickets') }}
{{__('Add New')}}
@forelse ($tickets as $ticket) @if ($ticket->lastMessage) @else @endif @empty @endforelse
{{__('Subject')}} # {{__('Status')}} {{__('Last Reply')}} {{__('Action')}}
{{$ticket->subject}} {{$ticket->status}} {{ \Carbon\Carbon::parse($ticket->lastMessage->created_at)->diffForHumans() }} {{__('No Reply')}} {{__('View')}} {{__('Delete')}}
{{__('Ticket Not Found')}}
@endsection