@extends('layout.app') @section('left-menu') @parent @stop @section('center-area') @parent @if( auth()->check()) @if( auth()->user()->fireStationID == NULL) Jednostka nie istnieje @else @if(count($awardedDecorations) > 0)

@foreach($awardedDecorations as $awardedDecoration) @endforeach
{{ $firefighter->name }} {{ $firefighter->surname }} - odznaczenia
Odznaczenie Data przyznania Operacja
{{ $awardedDecoration->decorationName }} {{ $awardedDecoration->dateOfAward }} {{ csrf_field() }} @method('DELETE')

@else {{ $firefighter->name }} {{ $firefighter->surname }} nie posiada żadnych odznaczeń. @endif
{{ csrf_field() }}
@include('inc.formerrors')
@endif @else Brak autoryzacji @endif @stop