2019-12-28 15:08:25 +01:00
|
|
|
@extends('layout.app')
|
|
|
|
|
|
|
|
@section('left-menu')
|
|
|
|
@parent
|
|
|
|
<ul>
|
|
|
|
<a href="/userprofile"><li>Mój profil<img src="../img/left_menu_icon/edit.png"></li></a>
|
|
|
|
<a href="/userprofile/edit"><li>Edytuj profil<img src="../img/left_menu_icon/edit.png"></li></a>
|
2020-01-01 03:18:06 +01:00
|
|
|
<a href="/userprofile/odznaczenia"><li>Odznaczenia<img src="../img/left_menu_icon/more.png"></li></a>
|
2019-12-28 15:08:25 +01:00
|
|
|
<a href="/userprofile/passwordchange"><li>Zmiana hasła<img src="../img/left_menu_icon/edit.png"></li></a>
|
|
|
|
</ul>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('center-area')
|
|
|
|
@parent
|
|
|
|
|
|
|
|
@if( auth()->check())
|
|
|
|
|
|
|
|
<p align='center'>
|
|
|
|
<table class='firefighterViewTable'>
|
|
|
|
<tr class='table-header'>
|
|
|
|
<td>Szkolenie</td>
|
|
|
|
<td>Data ukończenia</td>
|
|
|
|
<td>Data ważności</td>
|
|
|
|
@foreach($userTrainings as $userTraining)
|
|
|
|
<tr>
|
|
|
|
<td id="trainingName{{ $userTraining->id }}">{{ $userTraining->trainingName }}</td>
|
|
|
|
<td id="dateOfComplete{{ $userTraining->id }}">{{ $userTraining->dateOfComplete }}</td>
|
|
|
|
<td id="dateOfExpiry{{ $userTraining->id }}">{{ $userTraining->dateOfExpiry }}</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
@else
|
|
|
|
Brak autoryzacji
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stop
|