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

Staff View

@foreach ($staffs as $staff) @endforeach
# First Name Last Name Department Email Designation Status Action
{{$loop->iteration}} {{ $staff->first_name }} {{ $staff->last_name }} {{ $staff->department }} {{ $staff->email }} {{ $staff->designation }} {{ $staff->activated }}
@endsection