@extends('admin.layouts.master') @section('header') @endsection @section('contents')

Filter

{{trans('Reset')}}
@foreach($rows as $row) @endforeach
# {{__('User')}} {{__('Doctor')}} {{__('Duration')}} {{__('Type')}} {{__('Sub Total Amount')}} {{__('Total Amount')}} {{__('Created At')}}
{{$loop->iteration}} {{$row->patient?$row->patient->name:__('Resource Not Found')}} {{$row->doctor?$row->doctor->name:__('Resource Not Found')}} {{$row->duration}} {{__('Mins')}} {{$row->urgent_status== 1 ?__('Urgent'):__('Normal')}} {{$row->sub_total_price}} {{__('SAR')}} {{$row->total_price}} {{__('SAR')}} {{custom_date($row->created_at)}}
@endsection @section('scripts') @endsection