2019-07-11 23:55:51 +02:00
|
|
|
@extends('layout.app')
|
|
|
|
|
|
|
|
@section('left-menu')
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('center-area')
|
|
|
|
@parent
|
2020-01-05 10:42:59 +01:00
|
|
|
@if( auth()->check())
|
|
|
|
@if( auth()->user()->fireStationID != NULL)
|
2020-07-20 22:04:41 +02:00
|
|
|
@if(auth()->user()->accessLevel() == 50)
|
2020-01-05 10:42:59 +01:00
|
|
|
<form action="/pdf/sprzet" method="post">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<button class="btn btn-info" type="submit">Stan sprzętu</button>
|
|
|
|
</form>
|
2020-01-05 11:48:42 +01:00
|
|
|
|
|
|
|
<form action="/pdf/strazacy" method="post">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<button class="btn btn-info" type="submit">Wykaz strażaków wraz z kontaktem</button>
|
|
|
|
</form>
|
2020-03-25 00:20:45 +01:00
|
|
|
|
2020-07-11 20:56:21 +02:00
|
|
|
<form action="/dokumentacja/wniosek_o_nadanie" method="post">
|
2020-03-25 00:20:45 +01:00
|
|
|
{{ csrf_field() }}
|
|
|
|
<button class="btn btn-info" type="submit">Wniosek o przyznanie odznaczenia</button>
|
|
|
|
</form>
|
2020-07-11 20:56:21 +02:00
|
|
|
|
|
|
|
<form action="/dokumentacja/karta_ewidencyjna" method="post">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<button class="btn btn-info" type="submit">Karta Ewidencyjna</button>
|
|
|
|
</form>
|
2020-07-20 22:04:41 +02:00
|
|
|
@else
|
|
|
|
Brak dostępu.
|
|
|
|
@endif
|
2020-01-05 10:42:59 +01:00
|
|
|
@endif
|
|
|
|
@endif
|
2019-09-11 00:09:22 +02:00
|
|
|
@stop
|