@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 Quantité Etat Vente Etat Achat Action
{{ $article->rowid ?? '' }} image {{ $article->label ?? '' }} {{ $article->description ?? '' }} {{ number_format($article->price , 0, '', ' ') ?? '' }} {{ $article->stock?? '' }} {{ ( $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