@extends('layouts.master') @section('title', 'Attendance | Proxima - Medical Management app') @section('title-topbar', __('basic.attendance')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @if (Session::has('error_delete')) @endif @endsection @section('content'){{ Carbon\Carbon::now() }}
{{ date('d M Y | h:i A', strtotime($atten->arrived_time)) }}
@else {{ __('basic.arrive') }} @endif{{ date('d M Y | h:i A', strtotime($atten->leave_time)) }}
@else {{ __('basic.leave') }} @endif@php $totalDuration = Carbon\Carbon::parse($atten->leave_time) ->diff($atten->arrived_time) ->format('%H hour %i minute'); @endphp {{ $totalDuration }}