@extends('buyers_sellers.layout2.master') @section('title', 'Dashboard') @section('content')
List of Tickets
@if(Session::has('message')) @endif
@foreach($data as $row) @endforeach
Topic Date SR.No Ticket No Client Name Service Provider Dispute Details Comments Raised By To Status
@if($row->topic) {{$row->topic}} @else No Resolution yet @endif {{\Carbon\Carbon::parse($row->created_at)->format('d-m-Y')}} {{$row->sr_no }} {{$row->ticket_no }} {{$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}}
@endsection @section('scripts') @endsection