@extends('layouts.pages') @section('page') @include('layouts._partials.liens')

{{ __('buy-again.title') }}

@forelse ($products as $p)
@if(config('website.drive') == 1 && $p['drive'] == 1)
  • @endif
  • @if(config('website.drive') == 1 && $p['drive'] == 1) Disponible au click & drive. @endif

    {{ $p->name }}

    @if($p->code)
    {{ __('product.reference') }} : {{ $p->code }}
    @endif {{ __('product.conditioning') }} : {{ $p->conditioning }} unité@if($p->conditioning)s @endif @if($p->description_short)

    {{ $p->description_short }}

    @endif
    {{ number_format(App\Http\Controllers\Products\ProductsRulesController::price($p->id), 3, ',', ' ') }} € / HT
    Soit @if($p->conditioning) {{ number_format(App\Http\Controllers\Products\ProductsRulesController::price($p->id)*$p->conditioning, 3, ',', ' ') }} € / HT @else {{ number_format(App\Http\Controllers\Products\ProductsRulesController::price($p->id), 3, ',', ' ') }} € / HT @endif
    -
    +
    @empty
    Votre liste de produits en favoris est vide..
    @endforelse
    {{ $products->withQueryString()->links() }}
    @endsection