@extends('layout.mainlayout') @section('content')
Item
@foreach($categories as $cat) @endforeach
@foreach($products as $product)
@if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }}
@if($product->status === 'available') Available @else Unavailable @endif
@endforeach @if(count($products) === 0)
No available products. Add products in Product Management.
@endif
Order
Item Name Qty Unit Price Price
Click a product to add it to the order.
@endsection