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