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

{{ trans('Tickets histories list') }} {{ trans('Tickets histories list') }}...

@php $getUserRoleData = userRoleData(); $Tickets = explode(",",$getUserRoleData->Tickets); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(in_array("History",$Tickets )) @if(count((array) $result['ticketsData'])>0) @foreach ($result['ticketsData'] as $rsVal) @endforeach @else @endif
{{ trans('ID') }} {{ trans('Date') }} {{ trans('Time') }} {{ trans('Assigned') }} {{ trans('Status') }}
{{ $rsVal->tickets_id }} {{date('d-m-Y', strtotime($rsVal->tickets_created_at))}} {{date('H:i A', strtotime($rsVal->tickets_created_at))}} {{ $rsVal->customers_firstname }} {{ $rsVal->customers_lastname }} {{ $rsVal->status_name }}
No record found
@else

Please contact with SuperAdmin

@endif
@endsection