@extends('layouts.public-layout') @section('title', $product->title . ' - Boutique - MMPV') @section('content') Accueil / Boutique / {{ $product->title }} @php $icon = $product->category === 'Livre' ? 'book' : 'box'; $color = $product->category === 'Livre' ? 'blue' : 'green'; @endphp @if($product->image) @else @endif {{ $product->category }} {{ $product->title }} @if($product->author) Par {{ $product->author }} @endif {{ number_format($product->price, 2) }} € @if($product->stock > 0) En stock {{ $product->stock }} exemplaire(s) disponible(s) @if($product->stock <= 5) Stock limité ! Plus que {{ $product->stock }} en stock @endif @else Épuisé @endif @if($product->stock > 0) @php $subject = "Commande - " . $product->title; $body = "Bonjour,\n\n"; $body .= "Je souhaite commander le produit suivant :\n\n"; $body .= "─────────────────────────────\n"; $body .= "Produit : " . $product->title . "\n"; if($product->author) { $body .= "Auteur : " . $product->author . "\n"; } $body .= "Catégorie : " . $product->category . "\n"; $body .= "Prix : " . number_format($product->price, 2) . " €\n"; $body .= "─────────────────────────────\n\n"; $body .= "MES INFORMATIONS :\n"; $body .= "Nom complet : [Votre nom complet]\n"; $body .= "Email : [Votre email]\n"; $body .= "Téléphone : [Votre numéro de téléphone]\n"; $body .= "Adresse de livraison : [Votre adresse complète]\n\n"; $body .= "DÉTAILS DE LA COMMANDE :\n"; $body .= "Quantité souhaitée : [Nombre d'exemplaires]\n"; $body .= "Mode de paiement souhaité : [Espèces / Mobile Money / Virement]\n\n"; $body .= "Message ou questions supplémentaires :\n"; $body .= "[Votre message]\n\n"; $body .= "Cordialement"; $mailtoLink = "mailto:rachetesdeleternel@gmail.com?subject=" . rawurlencode($subject) . "&body=" . rawurlencode($body); @endphp Acheter maintenant @else Produit épuisé @endif @php $contactSubject = "Demande d'information - " . $product->title; $contactBody = "Bonjour,\n\nJe souhaite obtenir des informations supplémentaires sur le produit : " . $product->title . "\n\n[Votre question]\n\nCordialement"; $contactLink = "mailto:rachetesdeleternel@gmail.com?subject=" . rawurlencode($contactSubject) . "&body=" . rawurlencode($contactBody); @endphp Nous contacter Détails du produit Catégorie: {{ $product->category }} @if($product->author) Auteur: {{ $product->author }} @endif Prix: {{ number_format($product->price, 2) }} € Statut: @if($product->status === 'available') Disponible @elseif($product->status === 'out_of_stock') Épuisé @else {{ ucfirst($product->status) }} @endif @if($product->description) Description {{ $product->description }} @endif Retour à la boutique Besoin d'aide ? Notre équipe est disponible pour répondre à toutes vos questions Nous appeler Nous écrire @endsection
Par {{ $product->author }}
{{ number_format($product->price, 2) }} €
Stock limité ! Plus que {{ $product->stock }} en stock
Notre équipe est disponible pour répondre à toutes vos questions