@inject('request', 'Illuminate\Http\Request') @extends('layouts.app') @section('content')
| User | Doctor | Call Start | Call End | Call Time | Amount | Date | ||
|---|---|---|---|---|---|---|---|---|
| {{$value->user->name ?? ''}} | {{$value->doctor->name ?? ''}} | @if($value->call_at!='' && $value->call_at!='0000-00-00 00:00:00') {{date('d-m-Y h:s:i',strtotime($value->call_at)) ?? ''}}@endif | @if($value->call_end!='' && $value->call_end!='0000-00-00 00:00:00') {{date('d-m-Y h:s:i',strtotime($value->call_end)) ?? ''}}@endif | {{$diff_in_minutes ?? ''}} | {{$value->amount ?? ''}} | @if($value->created_at!='' && $value->created_at!='0000-00-00 00:00:00') {{date('d-m-Y',strtotime($value->created_at)) ?? ''}}@endif | ||
| @lang('global.app_no_entries_in_table') | ||||||||