@extends('layouts.master') @section('content')

Staff

@if($errors->has('status')) @if($errors->first('status')==1)
{{ $errors->first('message') }}
@else
{{ $errors->first('message') }}
@endif @endif
@foreach($employees as $employee) @endforeach
# Employee Id Personnel No. IPPIS No. Full Name First Name Surname Other Name Gender #DOB #Phone Email LGA State Unit Action LGA ID state ID unit ID
{{$loop->index+1}} {{ $employee->user_id }} {{ $employee->p_no }} {{ $employee->ippis_no }} {{ $employee->surname .','.$employee->first_name.' '. $employee->other_names }} {{ $employee->first_name }} {{ $employee->surname }} {{ $employee->other_names }} {{ $employee->gender }} {{ $employee->dob }} {{ $employee->phone }} {{ $employee->email }} {{ $employee->lga }} {{ $employee->state }} {{ $employee->unit }} Edit {{ $employee->lga_id }} {{ $employee->state_id }} {{ $employee->unit_id }}
@endsection @section('js') @endsection