×
Update Time Log
{!! Form::open(['id'=>'updateTime','class'=>'ajax-form']) !!}
@lang('modules.timeLogs.task')
@forelse($tasks as $task)
id == $timeLog->task_id) selected @endif value="{{ $task->id }}">{{ ucfirst($task->heading) }}
@empty
@lang('messages.noTaskAddedToProject')
@endforelse
@lang('modules.timeLogs.employeeName')
@forelse($task->project->members as $member)
user->id == $timeLog->user_id) selected @endif value="{{ $member->user->id }}">{{ $member->user->name }}
@empty
No member added to project
@endforelse
Start Date
End Date
end_time)) value="{{ $timeLog->end_time->timezone($global->timezone)->format($global->date_format) }}" @else value="{{ \Carbon\Carbon::today()->format($global->date_format) }}" @endif>
Start Time
End Time
end_time)) value="{{ $timeLog->end_time->timezone($global->timezone)->format('h:i A') }}" @endif id="end_time" class="form-control">
Total Time
0 Hours 0 Minutes
Memo
Save
{!! Form::close() !!}