@extends('layouts/layoutMaster') @section('title', 'Worker View') @section('vendor-style') @endsection @section('page-style') @endsection @section('vendor-script') @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }} ✔
@endif
... Back @if($data->current_lat && $data->current_long) @endif @if($data->profile_img && $data->approval == 'Not Approved') Approve Selfi @endif

Worker Id
{{$data->worker_id}}
Name
{{$data->name}}
Passport
{{$data->passport ? $data->passport : '--'}}
Nationality
{{$data->country ? $data->country->name : '--'}}
Current Location
{{$data->current_location ? $data->current_location : '--'}}
Current Lat
{{$data->current_lat ? $data->current_lat : '--'}}
Current Long
{{$data->current_long ? $data->current_long : '--'}}
Company
{{$data->company ? $data->company->name : '--'}}
Site
{{$data->site ? $data->site->name : '--'}}
Created Date
{{date('d-m-Y H:i:A',strtotime($data->created_at))}}
Approval
@if($data->approval == 'Approved') {{$data->approval}} @else {{$data->approval}} @endif
Remark
{{$data->remark ? $data->remark : '--'}}
Date Of Birth
{{$data->dob ? $data->dob : '--'}}
Bank Name
{{$data->bank_name ?? '--'}}
Account Number
{{$data->account_number ?? '--'}}
@include('content.Admin.Layoutes.Footer') @endsection @section('page-script') @endsection