@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content') {{-- --}}
List of Tickets
@if(Session::has('message')) @endif
{{-- --}} @foreach($data as $row) {{-- --}} @endforeach
SR.No Ticket No Topic Date Client Name Service Provider Dispute Details Comment Raised By To StatusAction
{{$row->sr_no }} {{$row->ticket_no }} @if($row->topic) {{$row->topic}} @else No Resolution yet @endif {{$row->created_at }} {{$row['Client']->full_name}} {{$row['Provider']->full_name}} @if($row->dispute_details) {{$row->dispute_details}} @else No Resolution yet @endif @if($row->resolution) {{$row->resolution}} @else No Resolution yet @endif {{$row->raised_by}} {{$row->to}} {{$row->status}} update detail
@endsection @push('scripts') {{-- --}} @endpush