@extends('layouts.admin') @section('content')
@csrf
CATALOGUE DES PRODUITS DE LA CBAO
@foreach($produits as $p) @if($p->price != NULL ||$p->prix_1 != NULL || $p->prix_2 != NULL)
{{ $p->label }}
{{ $p->mini_description }}
{{ number_format($p->price , 0 ,'', ' ') }} FCFA
{{ number_format($p->prix_1 , 0 ,'', ' ') }} FCFA / 12 mois
{{ number_format($p->prix_2 , 0 ,'', ' ') }} FCFA / 24 mois
Voire le produit
Ajouter au Panier
@endif @endforeach
@endsection @section('scripts') @parent @endsection