@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {{-- {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), route('user.index') => _trans('common.Employees'), '#' => @$data['title'], ]) !!} --}}

{{ _trans('common.Your') }} {{ @$data['break']->breakType->name }} {{ _trans('common.is running') }}

{{ _trans('common.STARTED') }}

{{ date('h:i:s A', strtotime($data['break']->start_time)) }}

{{ _trans('common.END') }}

{{-- if will_ask_next_meal =1 then show this input field --}} {{-- @if ($data['break']->breakType->will_ask_next_meal == 1)
@endif --}}
{{ _trans("common.Today's Record") }}
    @foreach ($data['today_breaks'] as $break)
  • {{ $break->duration ?? '00:00:00' }}

    |

    {{ $break->breakType->name }} {{ date('h:i:s A', strtotime($break->start_time)) }} {{ _trans('common.to') }} {{ date('h:i:s A', strtotime($break->end_time)) }}

  • @endforeach
{{-- Total Recored Time --}}
{{-- Total break time --}} {{ _trans('common.Total break time') }} {{ @$data['totalDuration'] ?? '0 Min' }}
{{-- / --}}
{{-- / --}}
@endsection @section('script') {{-- onchnage document_type select --}} @endsection