@extends('layouts.app') @section('content')

BIG HOSPITALS

@foreach ($regular_beds as $item) @if (in_array( strtolower($item->code), $big_four ))
@endif @endforeach

SMALL HOSPITALS

@foreach ($regular_beds as $item) @if (!in_array( strtolower($item->code), $big_four ))
@endif @endforeach
@endsection @section('script') @endsection