@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}}
 
{{-- RELATED SOUVENIR --}}

Related Product List

{{-- MODAL CONFIRM --}}
@endforeach
@include('layout.footer')