@extends('web.layouts.app')
@section('title', 'Order Patient')
@section('stylesheets')
@endsection
@section('banner')
@endsection
@section('content')
@foreach ($items as $item)
-
@endforeach
VIEW MORE
@endsection
@section('cart')
@endsection
@section('menubar')
@php
$currentHour = (int) now()->timezone('Asia/Jakarta')->format('H');
$isStoreOpen = $site->id == 6 ? ($currentHour >= 9 && $currentHour < 21) : true;
@endphp
@endsection
@section('scripts')
@endsection