@extends('layout.pageheader') @section('title', 'Product') @section('style') @endsection @section('content')

{{$product->name}}

{{$product->short_desc}}

{{$product->product_price}}
@if($product->category_id === 1 || $product->category_id === 2 || $product->category_id === 4 || $product->category_id === 6)

Size:

@foreach($sizes as $size) @endforeach

Sauces:

@foreach($sauces as $sauces) @endforeach

Crusts:

@foreach($crusts as $crusts) @endforeach

Cookings:

@foreach($cookings as $cookings) @endforeach

Dippings:

@foreach($dippings as $dippings) @endforeach

Wings:

@foreach($wings as $wings) @endforeach
@elseif($product->category_id == 5)

Sauces:

@foreach($sauces as $sauces) @endforeach
@endif

Order Note:

Quantity:

@if($sizescheck->category_id != $product->category_id) @else @endif @csrf
@endsection @section('script') @endsection