@if (session()->has('message'))
{{ session('message') }}
@endif
{{ __('processing') }}
@foreach ($users as $user) @endforeach
{{ __('id') }} {{ __('name') }} {{ __('dob') }} {{ __('sex') }} {{ __('address') }} {{ __('city') }} {{ __('country') }} {{ __('private') }} {{ __('number') }} {{ __('company') }} {{ __('number') }} {{ __('startsalary') }} {{ __('os') }} {{ __('music') }} {{ __('emailprivate') }} {{ __('emailcompany') }} {{ __('idpicture') }} {{ __('transaction') }} {{ __('bank') }} {{ __('doe') }} {{ __('jobpos') }} {{ __('bloodt') }} {{ __('bloodd') }} {{ __('employmentt') }} {{ __('contractt') }} {{ __('employmentd') }} {{ __('noticeemployee') }} {{ __('noticeemployer') }} {{ __('action') }}
{{ $user->id }} {{ $user->name }} {{ $user->surname }} @if( $user->date_of_birth != null ) {{ date('d-m-Y', strtotime( $user->date_of_birth )) }} @endif {{ ucfirst($user->sex) }} {{ $user->address }} {{ $user->city }} {{ $user->country }} {{ $user->number_private }} {{ $user->number_company }} {{ $user->salary_start }} {{ $user->os }} {{ $user->music_genre }} {{ $user->email_private }} {{ $user->email }} @foreach ($user->user_id_pictures as $id_picture)
ID
@endforeach
{{ $user->transaction_account }} {{ $user->bank }} @if( $user->date_of_employment != null ) {{ date('d-m-Y', strtotime( $user->date_of_employment )) }} @endif {{ $user->job_position }} {{ $user->blood_type }} {{ $user->blood_donor == 'yes' ? 'Yes' : ($user->blood_donor == 'no' ? 'No' : null) }} {{ $user->employment_type == 'full' ? 'Full Time' : ($user->employment_type == 'part' ? 'Part Time' : null) }} @if($user->contract_latest() != null) {{ ucfirst($user->contract_latest()->type) }} @endif @if($user->contract_latest() != null) @if($user->contract_latest()->type == 'definite') {{ date('d-m-Y', strtotime($user->contract_latest()->valid_to)) }} @endif @endif @if( $user->notice_from_employee != null ) {{ date('d-m-Y', strtotime( $user->notice_from_employee )) }} @endif @if( $user->notice_from_employer != null ) {{ date('d-m-Y', strtotime( $user->notice_from_employer )) }} @endif
{{ $users->onEachSide(2)->links('custom-pagination-links-view') }}