@extends('layouts.admin') @section('content') @can('article_creer')
Nouveau Article
@endcan
Liste des Articles
@foreach($articles as $key => $article) @endforeach
{{ trans('cruds.client.fields.id') }} Image Article Description Prix Prix CBAO Prix CMS Etat Vente Etat Achat Action
{{ $article->rowid ?? '' }} image {{ $article->label ?? '' }} {{ $article->description ?? '' }} {{ number_format($article->price , 0, '', ' ') ?? '' }} FCFA {{ number_format($article->prix_1 , 0, '', ' ') ?? '' }} / 12 mois
{{ number_format($article->prix_2 , 0, '', ' ') ?? '' }} / 24 mois
{{ number_format($article->prix_1_CMS , 0, '', ' ') ?? '' }} / 12 mois
{{ number_format($article->prix_2_CMS , 0, '', ' ') ?? '' }} / 24 mois
{{ ( $article->tosell == 1 )? 'En Vente' : 'Hors Vente' }} {{ ( $article->tosell == 1 )? 'En Achat' : 'Hors Achat' }} @can('article_modifier') @endcan @can('article_supprimer')
@endcan
@endsection @section('scripts') @parent @endsection