@extends('layouts.app') @section('title', 'Staff') @section('content') {{-- Table of staff details --}}

Staff Record

@foreach ($staffs as $staff) @endforeach
S# Name Position Salary Contact Actions
{{$serial++}} {{$staff->staff_name}} {{$staff->staff_position}} {{$staff->staff_salary}} Rs {{$staff->staff_contact}} Details
Edit
@method('DELETE') @csrf
@endsection