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