@extends('layouts.app')
@section('title', 'Staff')
@section('content')
{{-- Table of staff details --}}
| S# |
Name |
Position |
Salary |
Contact |
Actions |
@foreach ($staffs as $staff)
| {{$serial++}} |
{{$staff->staff_name}} |
{{$staff->staff_position}} |
{{$staff->staff_salary}} Rs |
{{$staff->staff_contact}} |
Details
Edit
|
@endforeach
@endsection