@extends('layout.app')
@section('left-menu')
@parent
@stop
@section('center-area')
@parent
@if( auth()->check())
@if( auth()->user()->fireStationID == NULL)
Jednostka nie istnieje
@else
# |
Nazwa |
Ilość |
Param. charakterystyczny |
Operacja |
@php
$i=1;
@endphp
@foreach($equipment as $item)
{{$i}} |
{{ $item->name }} |
{{ $item->amount }} |
{{ $item->parameter }} |
Edytuj
|
@php
$i++;
@endphp
@endforeach
{{ $equipment->links() }}
@endif
@else
Brak autoryzacji
@endif
@stop