@extends('layout.app') @section('left-menu') @parent @if( auth()->check() ) @if( auth()->user()->fireStationID != NULL) @if(auth()->user()->accessLevel() == 50) @endif @endif @endif @stop @section('center-area') @parent @if( auth()->check()) @if( auth()->user()->fireStationID == NULL) Jednostka nie istnieje @else @if(auth()->user()->accessLevel() == 50) @endif @php $lp=0 // liczba porządkowa @endphp @foreach($vehicles as $vehicle) @php $lp = $lp + 1 @endphp @if(auth()->user()->accessLevel() == 50) @endif @endforeach
# Typ Pojazdu Marka Nr rej. Kryptonim Rok Produkcji Rodzaj napędu Przegląd OCOperacja
{{ $lp }} {{ $vehicle->name }} {{ $vehicle->brand }} {{ $vehicle->registrationNumber }} {{ $vehicle->codename }} {{ $vehicle->productionYear }} {{ $vehicle->driveType }} {{ $vehicle->examExpirationDate }} {{ $vehicle->insuranceExpirationDate }} Edytuj @if ($vehicle->status == 1)
{{ csrf_field() }}
@elseif ($vehicle->status == 0)
{{ csrf_field() }}
@endif
{{ $vehicles->links() }} @endif @else Brak autoryzacji @endif @stop