@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 $currentHour = (int) now()->timezone('Asia/Jakarta')->format('H'); $isStoreOpen = $site->id == 6 ? ($currentHour >= 9 && $currentHour < 21) : true; @endphp @endsection @section('scripts') @endsection