@extends('web.layouts.app') @section('title', 'Order General') @section('stylesheets') @endsection @section('banner')
{{ $greeting }}
Nama wajib diisi.
Lokasi wajib diisi.
@if($site->id == 5 || $site->id == 6)
@endif
Emai wajib diisi.
Phone wajib diisi.
@endsection @section('content')
    @foreach ($items as $item)
  • logo
    {{ $item->name }}
    {{ $item->description }}
  • @endforeach
VIEW MORE
@endsection @section('cart')
{{ csrf_field() }}
  • Total
    Rp 53.68
@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