@extends('layouts.promoter') @section('content') @can('time_entry_create')
{{ trans('global.add') }} {{ trans('cruds.timeEntry.title_singular') }}
@endcan
{{ trans('cruds.timeEntry.title_singular') }} {{ trans('global.list') }}
@foreach($timeEntries as $key => $timeEntry) @endforeach
{{ trans('cruds.timeEntry.fields.id') }} {{ trans('cruds.timeEntry.fields.promoter') }} {{ trans('cruds.timeEntry.fields.time_start') }} {{ trans('cruds.timeEntry.fields.time_end') }}  
{{ trans('cruds.timeEntry.fields.id') }} {{ trans('cruds.timeEntry.fields.promoter') }} {{ trans('cruds.timeEntry.fields.time_start') }} {{ trans('cruds.timeEntry.fields.time_end') }}
{{ $timeEntry->id ?? '' }} {{ $timeEntry->promoter->name ?? '' }} {{ $timeEntry->time_start ?? '' }} {{ $timeEntry->time_end ?? '' }} @can('time_entry_show') {{ trans('global.view') }} @endcan @can('time_entry_edit') {{ trans('global.edit') }} @endcan @can('time_entry_delete')
@endcan
@endsection @section('scripts') @parent @endsection