@extends('layouts.admin') @section('page_header')
| User | Purpose | Vehicle | Start | End | Status | Action | |
|---|---|---|---|---|---|---|---|
| {{ $r->user->name ?? '-' }} | {{ $r->purpose }} | {{ $r->vehicle->plate ?? '-' }} | {{ optional($r->start_at)?->timezone(config('app.display_timezone'))->format('d.m.Y H:i') }} | {{ $r->end_at ? $r->end_at->timezone(config('app.display_timezone'))->format('d.m.Y H:i') : '—' }} | {{ ucfirst($r->status) }} |
{{-- VIEW (only completed) --}}
@if($r->status === 'completed')
@endif
{{-- EDIT --}}
{{-- DELETE --}}
|
|
| - No records found - | |||||||