@if ($row->date_time!='')
{{ \Carbon\Carbon::parse($row->date_time)->translatedFormat('d M') }}
{{ $row->date_time->translatedFormat($settings->time_format) }}
@endif @lang('app.booking') # {{ $row->id }} @if ($row->deal_id!='') @lang('app.deal') @endif
{{ ucwords($row->user->name) }} @if ($row->booking_type === 'online') (@lang("app.online")) @endif
@if(!is_null($row->user->email)) @if(strlen($row->user->email) > 17) {{ substr($row->user->email, 0, 18).'...' }} @else {{ $row->user->email }} @endif @else -- @endif
{{ $row->user->mobile ? $row->user->formatted_mobile : '--' }}
{{-- Deal --}} @lang('app.'.$row->status)
@foreach($row->items as $item) {{-- {{ $item->businessService->name }} --}} {{ is_null($item->business_service_id) ? $item->product->name : $item->businessService->name }} • @endforeach