@extends('layouts.backend') @section('styles') @endsection @section('page-header')

Tickets

Add Ticket
@endsection @section('content')
@php $count = 1; @endphp @foreach ($tickets as $ticket) @php $count++; @endphp @endforeach
# Ticket Id Ticket Subject Assigned Staff Created Date Priority Status Actions
{{$count}} {{$ticket->tk_id}} {{$ticket->subject}}

avatar {{$ticket->employee->firstname.' '.$ticket->employee->lastname}}

{{date_format(date_create($ticket->created_at),'d M, Y H:i')}} {{ucfirst($ticket->priority)}} {{$ticket->status}}
{{-- modals starts here --}} {{-- modals ends here --}} @endsection @section('scripts') @endsection