@extends('layouts.promoter') @section('content') @can('product_time_entry_create')
{{ trans('global.add') }} {{ trans('cruds.productTimeEntry.title_singular') }}
@endcan
{{ trans('cruds.productTimeEntry.title_singular') }} {{ trans('global.list') }}
@foreach($productTimeEntries as $key => $productTimeEntry) @endforeach
{{ trans('cruds.productTimeEntry.fields.id') }} {{ trans('cruds.productTimeEntry.fields.ptl_no') }} {{ trans('cruds.productTimeEntry.fields.product_name') }} {{ trans('cruds.productTimeEntry.fields.time_start') }} {{ trans('cruds.productTimeEntry.fields.time_end') }}  
{{ trans('cruds.productTimeEntry.fields.id') }} {{ trans('cruds.productTimeEntry.fields.ptl_no') }} {{ trans('cruds.productTimeEntry.fields.product_name') }} {{ trans('cruds.productTimeEntry.fields.time_start') }} {{ trans('cruds.productTimeEntry.fields.time_end') }}
{{ $productTimeEntry->id ?? '' }} {{ $productTimeEntry->promoterTaskListProduct->promoterTaskList->ptl_no ?? '' }} {{ $productTimeEntry->product->product_name ?? '' }} {{ $productTimeEntry->timeEntry->time_start ?? 'No clock in yet.' }} {{ $productTimeEntry->timeEntry->time_end ?? 'No clock out yet.' }} @can('product_time_entry_show') {{ trans('global.view') }} @endcan @can('product_time_entry_edit') {{ trans('global.edit') }} @endcan @can('product_time_entry_delete')
@endcan
@endsection @section('scripts') @parent @endsection