@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.timeEntry.title') }}
{{ trans('cruds.timeEntry.fields.id') }} {{ $timeEntry->id }}
{{ trans('cruds.timeEntry.fields.promoter') }} {{ $timeEntry->promoter->name ?? '' }}
{{ trans('cruds.timeEntry.fields.time_start') }} {{ $timeEntry->time_start }}
{{ trans('cruds.timeEntry.fields.time_end') }} {{ $timeEntry->time_end }}
{{ trans('cruds.timeEntry.fields.status') }} {{ \App\Models\TimeEntry::STATUS_SELECT[$timeEntry->status] }}
{{ trans('global.show') }} Clock In and Out Images
Clock In Image Clock Out Image
{{ $timeEntry->clock_in_image }} {{ $timeEntry->clock_in_image }}
@endsection