@extends('layouts.master-vnext') @inject('dateranges', 'App\Services\DateRangePickerService') @section('page-title') Manage special times @endsection @section('content')
{{ Form::customSelect('employee', $employees, Request::input('employee'), ['placeholder' => 'Please choose ...', 'class' => 'form-control improved-select', 'style' => 'width: 200px']) }}
@foreach($times as $time) @endforeach
Date Name Hours Type Calculated?
@date($time->special_time_date, 'Y-m-d') {{ $time->employee->displayName }} {{ $time->hours }} {{ $time->timeType->name }} @if( $time->is_calculated ) x @endif edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection @section('js') @endsection