@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Employee Complete Details @endsection @section('subcontent')

Profile: ({{ $data['employee']->emp_fname }})

Name {{ $data['employee']->emp_fname }}
Father Name {{ $data['employee']->emp_father_name }}
Job {{ $data['employee']->emp_job }}
Gender {{ $data['employee']->emp_gender }}
Phone {{ $data['employee']->emp_phone }}
Email {{ $data['employee']->emp_email }}
Address {{ $data['employee']->emp_address }}
Status {{ $data['employee']->emp_status }}
DOB {{ $data['employee']->emp_dob }}
Hire Date {{ $data['employee']->hire_date }}
Midone - HTML Admin Template

{{ $data['employee']->id }}

Payments Information

@php $c = 0 @endphp @foreach ( $data['payments'] as $row) @endforeach
# Account Title Amount Paid Method Date
{{ ++$c }} {{ $row->account_id }} {{ $row->title }} {{ $row->amount }} {{ $row->method }} {{ $row->built_timestamp }}

Contracts Information

@php $c = 0 @endphp @foreach ( $data['contracts'] as $row) @endforeach
# Contract Type Contract From Contract To Status Salary Action
{{ ++$c }} {{ $row->contract_type }} {{ $row->start_date }} {{ $row->end_date }} {{ $row->status }} {{ $row->salary }}
@include('../pages/employee/contract')
@endsection @section('script') @endsection