@extends('customer.layout') @section('content')

{{__('Recent Tickets')}}

@forelse($tickets as $ticket) @empty @endforelse
{{__('Ticket ID')}} {{__('Title')}} {{__('Status')}} {{__('View')}}
{{$ticket->ticket_uuid}} {{$ticket->title}} {{__($ticket->status)}} {{__('View')}}
{{__('you haven\'t created any ticket yet')}}
@endsection