@extends('layouts.admin') @section('title','Hospital List') @section('content')
| # | Hospital Name | District | Status | Actions | ||
|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($hospitals->currentPage() - 1) * $hospitals->perPage() }} | {{ $hospital->name }} | {{ $hospital->district->district ?? 'N/A' }} | @if($hospital->status==1) Active @else Inactive @endif |
@if ($hospital->status == 1) @else @endif | ||
| No hospitals found. | ||||||