@extends('layouts.default') @section('content')
Warning: Undefined variable $person in /home/abazis/apps/logis/resources/views/persons/show.blade.php on line 5

Warning: Attempt to read property "get_info" on null in /home/abazis/apps/logis/resources/views/persons/show.blade.php on line 5

Warning: Undefined variable $person in /home/abazis/apps/logis/resources/views/persons/show.blade.php on line 6

Warning: Attempt to read property "player_id" on null in /home/abazis/apps/logis/resources/views/persons/show.blade.php on line 6

{!! $person->person_name . ' ' . $person->person_surname !!}

{!! substr('0000' . $person->id, -4, 4) !!}

@if (Session::get('user')['id'] == $person->id)

{!! trans('labels.invitations') !!}

@foreach ($invitations as $inv ) @endforeach @foreach ($invitSent as $invS ) @endforeach
{{ $inv->tr_date }} {{ $inv->time_label }} {{ $inv->table_label }} {{ $inv->booker_name }}
{{ $invS->tr_date }} {{ $invS->time_label }} {{ $invS->table_label }} {{ $invS->guest_name }} @if ($invS->inv_status == 'R') @elseif ($invS->inv_status == 'A') @else @endif
@endif

@endsection