@extends('admin.admin_dashboard') @section('admin')
Employees
Add Employee
@foreach($employees as $employee) @endforeach
# First Name Last Name Email Job Title Department Actions
{{ $loop->iteration }} {{ $employee->first_name }} {{ $employee->last_name }} {{ $employee->email }} {{ $employee->job_title }} {{ $employee->department->name }} Edit
@csrf @method('DELETE')
{{ $employees->links() }}
Departments
@foreach($departments as $department) @endforeach
# Department Name Description Actions
{{ $loop->iteration }} {{ $department->name }} {{ $department->description }} Edit
@csrf @method('DELETE')
{{ $departments->links() }}
Add Department
@csrf
@endsection