@extends('admin.layout.layout') @section('page-level-css') @endsection @section('content')
@include('admin.partials.header')
{{-- flash message starts here --}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif
{{-- flash message ends here --}}
{{-- filters starts --}}
{{-- Filters --}}
{{-- filters --}} {{-- @include('admin.partials.filters.locationFilter') --}} {{-- filters ends --}}
Tickets
@if( count($tickets) != 0 ) @php $sr = 1; @endphp @foreach( $tickets as $ticket ) @php $sr++; @endphp @endforeach @else @endif
{{-- Delete Modal Starts here --}} @include('admin.partials.trashModal') {{-- Delete Modal ends here --}} @include('admin.partials.footer')
@endsection @section('page-level-js') @endsection