Edit Timesheet
Activity Code | Activity | Site Operative | Allocated/hr | Spent/hr | Total Spent/hr | Remaining/hr | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $timesheet->activityOfTimesheet->item_code }} | {{ $timesheet->activity }} | {{ $timesheet->peoples }} | {{ $allocated_hour }} | {{ $timesheet->spent_hour }} | {{ $timesheet->total_spent_hour }} | {{ $timesheet->remaining_hour }} | ||||||||||||||||||
|
||||||||||||||||||||||||
{{ Form::label('notes', 'Notes') }}
{{ Form::textarea('notes', $timesheet->notes, [
'class' => "form-control",
'id' => "notes",
'rows'=> 3
]) }}
@if($errors->has('notes'))
{{ $errors->first('notes') }}
@endif
|
||||||||||||||||||||||||
{{ Form::file('files[]', [
'class' => "custom-file-input",
'id' => "files",
'multiple'=> 'multiple'
]) }}
@if($errors->has('files.*'))
{{ $errors->first('files.*') }}
@endif
|