@extends('elibrary.staff.layouts.app') @section('content') @include('elibrary.components.heading', ['title' => 'Our Staffs', 'url' => route('staff.create')]) Print Staff Credentials
@foreach($staffs as $staff) @endforeach
S>N. Staff Name Phone Number Designation Status Action
{{ $loop->iteration}} {{$staff->name}} {{$staff->phone ?? 'N/A'}} {{$staff->designation ?? 'N/A'}} @if($staff->status==1) Active @else Inactive @endif Detail Edit
@endsection