Lager-v3/resources/views/reservations/index.blade.php

75 lines
2.8 KiB
PHP

@extends('Layouts.master')
<style>
.modal-backdrop {
opacity: 0.75 !important;
}
</style>
@section('content')
<div class="main-container pb-4">
<div class="head-section mb-2">
@include('Partials.Pages.Search.search_bar')
</div>
@include('Partials.Pages.reservation_selector')
<table class="table table-striped">
<thead>
<th>@lang('user')</th>
<th>@lang('room')</th>
<th>@lang('items')</th>
<th>@lang('date_start')</th>
<th>@lang('date_end')</th>
<th>@lang('status')</th>
</thead>
<tbody>
@foreach($data as $reservation)
<tr>
<td class="col-2 align-middle">
<a href="{{route('users.show',['user' => $reservation->user_id])}}" target="_blank"
class="btn btn-success">
{{$reservation->user->username}}
</a>
</td>
<td class="col-2 align-middle">
<a href="{{route('rooms.show',['room' => $reservation->room_id])}}" target="_blank"
class="btn btn-success">
{{$reservation->room->building->name}}.{{$reservation->room->name}}
</a>
</td>
<td class="col-2 align-middle">
@include('Partials.Pages.reservation_items')
</td>
<td class="col align-middle">
{{date('d.m.Y',strtotime($reservation->date_start))}}
</td>
<td class="col align-middle">
@if(!empty($reservation->date_end))
{{date('d.m.Y',strtotime($reservation->date_end))}}
@else
@lang('permanent')
@endif
</td>
<td class="col align-middle">
@switch($reservation->type->name)
@case('Reservation - Awaiting')
@lang('validation')
@break
@case('Reservation - Set Up')
@lang('setup')
@break
@case('Reservation - Pick Up')
@lang('pickup')
@break
@endswitch
</td>
</tr>
@endforeach
</tbody>
</table>
@include('Partials.Pages.display')
</div>
@endsection
@section('scripting')
@endsection