{{ $row->date_time->format('d M') }}
{{ $row->date_time->format($settings->time_format) }}
@lang('app.booking') # {{ $row->id }}
{{ ucwords($row->user->name) }}
@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 : '--' }}
@lang('app.'.$row->status)
@foreach($row->items as $item)
{{ $item->businessService->name }} •
@endforeach