@extends('web.layouts.app') @section('title', 'Order Patient') @section('stylesheets') @endsection @section('banner')
{{ $greeting }}
{{ $cart->total_cart }}
Nama companion wajib diisi.
Email wajib diisi.
Phone wajib diisi.
@endsection @section('content')
    @foreach ($items as $item)
  • logo
    {{ $item->name }}
    {{ $item->description }}
  • @endforeach
VIEW MORE
@endsection @section('cart')
@csrf

Total Tagihan Rp 28.600
@endsection @section('menubar') @php $currentTime = now()->timezone('Asia/Jakarta')->format('H:i'); $isStoreOpen = true; $closedText = 'Tutup'; // Logika berdasarkan ID toko if ($site->id == 6) { $isStoreOpen = ($currentTime >= '09:00' && $currentTime < '21:00'); $closedText = 'Tutup (09:00 - 21:00)'; } elseif ($site->id == 5) { $isStoreOpen = ($currentTime >= '08:30' && $currentTime < '22:00'); $closedText = 'Tutup (08:30 - 22:00)'; } @endphp @endsection @section('scripts') @endsection