@if(session('success'))
{!! session('success') !!}
@elseif(session('danger'))
{{ session('danger') }}
@endif
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
ID |
User |
Judul |
Status |
Action |
@foreach($tickets as $ticket)
{{ $ticket->id }} |
{{ $ticket->user->email }} |
@if($ticket->read_by_admin == false)
Belum dibaca
@endif
{{ substr($ticket->subject,0,50) }} |
{{ $ticket->status }}
|
@if($ticket->status != 'Closed')
@endif
|
@endforeach
{{$tickets->links()}}