@include('layout.header') @foreach ($souvenir as $item) @foreach ($item->images as $image) @endforeach @if (\Session::has('success')) {!! \Session::get('success') !!} @endif @if($errors->any()) {{$errors->first()}} @endif {{ csrf_field() }} {{$item->name}} Description {!! $item->description !!} Price Rp {{number_format($item->price,0,",",".")}} Total Limited Stock < {{$item->stock}} - + {{old('purpose')}} Order {{-- RELATED SOUVENIR --}} Related Product List @foreach ($others as $souvenir_item) @if (count($souvenir_item->images) > 0) @endif {{$souvenir_item->name}} Stock : {{$souvenir_item->stock}} Item Rp {{number_format($souvenir_item->price,0,",",".")}} @endforeach {{-- MODAL CONFIRM --}} Order Confirmation Are you sure want to order souvenir {{$item->name}} ? @endforeach @include('layout.footer')