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

{{ __('favorites.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
    @foreach ([25, 10, 5, 1] as $amount) {{ $amount }} @endforeach - + @foreach ([1, 5, 10, 25] as $amount) {{ $amount }} @endforeach
    @foreach ([25, 10, 5, 1] as $amount) {{ $amount }} @endforeach
    - +
    @foreach ([1, 5, 10, 25] as $amount) {{ $amount }} @endforeach
    {{ 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
    @endsection