@section('content')

Dashboard

Total

{{number_format($products->sum('achat'),3)}}

Achat

{{number_format($products->sum('vente'),3)}}

Vente

Répartition par prix d'Achat

@foreach($products as $product)

{{number_format($product->achat,3)}}

{{$product->name}}

@endforeach

Répartition par prix de Vente

@foreach($products as $product)

{{number_format($product->vente,3)}}

{{$product->name}}

@endforeach
@foreach($negativeQuantity as $product) @endforeach
Produit Boutique Quantité
{{$product->name}} {{$product->store}} {{$product->quantity}}
@stop @include('admin.header') @include('admin.topbar') @include('admin.sidebar') @include('admin.footer') @yield('header') {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} @yield('topbar') @yield('sidebar') @yield('content') @yield('footer') {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} {{--_____________________________________--}} @include('admin.end')