@t('Name') | @t('Gender') | @t('Age') | @t('Contact') | @t('Location') | @t('Registered') |
---|---|---|---|---|---|
{{ $row->name }} | {{ $row->gender }} | @if (isset($row->age) && $row->age) {{ $row->age }} @else @t('N/A') @endif |
@if (isset($row->email) && $row->email)
{{ $row->email }}
@else
@t('N/A')
@endif
@if (isset($row->phone) && $row->phone) {{ $row->phone }} @else @t('N/A') @endif |
@if (isset($row->town) && $row->town) {{ $row->county }}, {{ $row->town }} @else @t('N/A') @endif | @if (isset($row->created) && $row->created) @datetime($row->created) @endif |