@extends('layouts.app') @section('content')

{{ __('Tickets') }}


@foreach($tickets as $ticket) @endforeach
{{ __('Subject') }} {{ __('Status') }} {{ __('Comments') }} {{ __('Created at') }}
{{ $ticket->subject }} {{ $ticket->status === 1 ? 'Open' : 'Closed' }} {{ $ticket->comments->count() }} {{ date('Y-m-d', strtotime($ticket->created_at->tz(auth()->user()->timezone) )) }}
@endsection @section('scripts') @endsection