@extends('layouts.master') @section('title', 'Live Report | Proxima - Medical Management app') @section('title-topbar', 'Live Report') @section('css') @endsection @section('content')
{{ round(($item->total / $appointment_total) * 100, 1) }} %
{{ __('basic.name') }} | {{ __('basic.branch') }} | {{ __('basic.start') }} | {{ __('basic.end') }} | {{ __('basic.working hours') }} | @role('Super-admin|Hr'){{ __('basic.handle') }} | @endrole
---|---|---|---|---|---|
{{ $item->worker->name }} | {{ $item->branch->name }} | {{ date('h:i A', strtotime($item->arrived_time)) }} | {{ date('h:i A', strtotime($item->leave_time)) }} | @php $totalDuration = Carbon\Carbon::parse($item->leave_time) ->diff($item->arrived_time) ->format('%H hour %i minute'); $totalDuration_hours = Carbon\Carbon::parse($item->leave_time) ->diff($item->arrived_time) ->format('%H'); @endphp @if ($totalDuration_hours >= $fixed_working_hours) @endif {{ $totalDuration }} | @role('Super-admin|Hr'){{ __('basic.edit') }} | @endrole