@extends('layouts.app') @section('title', $product->name . ' - Premium Custom Designs') @section('styles') @endsection @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if($product->images->count() > 0) {{ $product->name }} @if($product->images->count() > 1)
@foreach($product->images as $image) {{ $product->name }} @endforeach
@endif @else {{ $product->name }} @endif

{{ $product->name }}

{{ $product->category->name }}

{{ $product->description }}

@if($product->type === 'wallpaper')

Wallpaper Info: Sold per meter (10m rolls). Pattern is 1m wide x 2.7m high. For a wall height of 2.7m, you need 3m of wallpaper.

@elseif($product->type === 'mural')

Mural Info: Sold per m² (square meter). Single image, non-repeating pattern. Perfect for accent walls.

@endif @if($product->stock > 0)
@csrf
Base cost per {{ $product->type === 'wallpaper' ? 'meter' : 'm²' }} of print stock
@if($product->type === 'wallpaper')
Recommended: Add 0.5m for pattern matching and trimming
@elseif($product->type === 'mural')
@endif

Estimated Total:

R{{ number_format($product->price, 2) }}
View Cart
@else @endif
×

Wallpaper Calculator

Enter your wall dimensions:

Width Height
1m
Width from selected print stock
@if($product->category->products->count() > 1) @endif
@endsection