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

Staff


Table Of Users
@foreach ($users as $user) @if($user->id != 1) @endif @endforeach
# Employee Name Department Action
{{ $user->id }} {{ $user->name }} {{ $user->department->name }} View Edit

@endsection