@extends('admin.layouts.app') @push('title') Users @endpush @push('banner')

Hospitals

@endpush @section('content') @include('admin.layouts.include.message')
{{--
--}}
@if ($hospitals->isNotEmpty()) @foreach ($hospitals as $hospital) @endforeach
# Name Province District Type Address City Country Action
# Name Province District Type Address City Country Action
{{ $loop->iteration }} {{ $hospital->name }} {{ $hospital->province->name ?? 'N/A' }} {{ $hospital->district }} {{ $hospital->type }} {{ limit_words($hospital->address, 20) }} {{ $hospital->city->name ?? 'N/A' }} {{ $hospital->country->name ?? 'N/A' }}
@else @endif
@endsection