{{-- Cart Header Component for Kiosk --}}
{{-- Logo/Brand --}}
@if($restaurant->logo) {{ $restaurant->name }} @endif

{{ $restaurant->name }}

{{-- Cart Information --}}
{{-- Order Type Badge --}} @if($orderType) {{ $orderType === 'dine_in' ? 'Dine In' : ucfirst(str_replace('_', ' ', $orderType)) }} @endif {{-- Cart Button --}} {{-- Cart Total --}} @if($cartTotal > 0)
Total
${{ number_format($cartTotal, 2) }}
@endif