@extends('layout') @section('content')
Shop / {{ $product->name }}

{{ $product->name }}

{{ $product->description }}

@if($product->variations->count() > 0)
@foreach($product->variations as $variation)
@if($product->image) {{ $product->name }} @else No Image @endif

{{ $product->name }}

{{ $variation->variation_name }}: {{ $variation->variation_value }}

@csrf
@endforeach
@else

Purchase Options

@if($product->image) {{ $product->name }} @else No Image @endif

{{ $product->name }}

{{ $product->description }}

@csrf
@endif @endsection