@extends('layouts.master') @section('content')
{{ $title }}
A list of employees linked to this payroll regardless of the status.
@include('layouts.payrollsubmenu')
@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif
@foreach($data as $item) @endforeach
Man No. First Name Last Name Status Action
{{ $item->man_number }} {{ $item->first_name }} {{ $item->last_name }} {{ $item->status }} @canany('Manage employees') View Employee Edit Employee @endcanany
@endsection @section('scripts') @endsection