Staff Master ( Howrah Municipal Corp. )
Staff Count {{ $staffCount }}
| SL No. | Staff Name | Staff Email | Staff Phone | Staff Designation | Action |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $data->name }} | {{ $data->email }} | {{ $data->phone }} | {{ $data->designation->title }} |
@extends('admin.layouts.app') @section('page_content') @php use App\Models\GVPMaster; use App\Models\WardMaster; use App\Models\StaffMaster; use App\Models\Designation; $GVPList = GVPMaster::all(); $wardList = WardMaster::all(); $staffList = StaffMaster::all(); $designationList = Designation::all(); $staffCount = 0; $staffCount = StaffMaster::count(); @endphp
| SL No. | Staff Name | Staff Email | Staff Phone | Staff Designation | Action |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $data->name }} | {{ $data->email }} | {{ $data->phone }} | {{ $data->designation->title }} |