@extends('layouts.admin-new') @section('content')
{{ $employer->name }}'s Employees
{{ $employer->name }}
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@forelse($employees as $employee) @empty @endforelse
Name
Email
Phone
Date Employed
Date Confirmed
Actions
{{$employee->name}}
{{$employee->email}}
{{$employee->phone}}
{{$employee->employment->date_employed }}
{{$employee->employment->date_confirmed }}
View Employee
No employees
@endsection @section('page-js') @endsection