@extends('dashboard.index') @section('contentDashboard') @include('dashboard.page_header')
{{ $user->name }}
@lang('dashboard.title_name'): {{ $user->name }}
@lang('dashboard.title_email'): {{ $user->email }}
@lang('dashboard.title_phone'): {{ $user->phone }}
@lang('dashboard.title_roles'): @if(!empty($user->getRoleNames())) @foreach($user->getRoleNames() as $v) @endforeach @endif
@foreach ($user->submissions as $i => $application) @endforeach
@lang('site.title_no') @lang('dashboard.title_pfr') @lang('dashboard.title_points') @lang('dashboard.title_image') @lang('dashboard.title_status') @lang('dashboard.title_source') @lang('dashboard.title_applied') @lang('dashboard.title_last_change')
{{ ++$i }} {{ $application->bi }} {{ $application->points }} @if($application->image != null) @endif {{ $submissionStatuses[$application->status] }}
{{ $application->source }}
{{ date('d.m.Y H:i:s', strtotime($application->created_at)) }} {{ date('d.m.Y H:i:s', strtotime($application->updated_at)) }}
@endsection