@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk')
@section('title', 'Schedule room')
@section('css')
@endsection
@section('content')
|
Reason |
Start |
End |
Actions |
@if (!$schedules->isEmpty())
@foreach ($schedules as $schedule)
|
{{$schedule->reason}} |
{{dateFormat($schedule->start, 'd-m-Y')}} |
{{dateFormat($schedule->end, 'd-m-Y')}} |
@if ($schedule->status_used != 1)
@endif
|
@endforeach
@endif
@endsection
@section('js')
@endsection