@extends('layouts.app') @section('content') @if (Auth::user()->role->name == 'Administrateur') @include('partials.dashboard-filter', ['filterId' => 'admin'])

{{ count($fournisseurs) }}

Fournisseurs

{{ count($products) }}

Total produits
icon

{{ count($categories) }}

Catégories
img
{{ number_format($total_ventes, 0, ' ', ' ') }} FCFA
Ventes du jour
{{ number_format($total_ventes_produits, 0, ' ', ' ') }} FCFA Produits
@if ($servicesModuleEnabled ?? false)
{{ number_format($total_ventes_services, 0, ' ', ' ') }} FCFA Services
@endif
img
{{ number_format($total_ventes, 0, ' ', ' ') }} FCFA
Total Ventes (Global)
{{ number_format($total_ventes_produits, 0, ' ', ' ') }} FCFA Produits
@if ($servicesModuleEnabled ?? false)
{{ number_format($total_ventes_services, 0, ' ', ' ') }} FCFA Services
@endif
img
{{ number_format($total_gains, 0, ' ', ' ') }} FCFA
Total Gains (Global)
{{ number_format($total_gains_produits, 0, ' ', ' ') }} FCFA Produits
@if ($servicesModuleEnabled ?? false)
{{ number_format($total_gains_services, 0, ' ', ' ') }} FCFA Services
@endif
img
{{ number_format($total_achats, 0, ' ', ' ') }} FCFA
Valeur du stock (prix de vente)
img
{{ number_format($valeur_stock_achat, 0, ' ', ' ') }} FCFA
Valeur du stock (prix d'achat)
img
{{ number_format($marge_stock, 0, ' ', ' ') }} FCFA
Marge potentielle sur stock
img
{{ number_format($depense_journaliere, 0, ' ', ' ') }} FCFA
Dépenses du jour
img
{{ number_format($total_depenses, 0, ' ', ' ') }} FCFA
Total des Dépenses
Commandes & Ventes
  • Ventes
  • Commandes
Commandes
  • Commandes
Ventes
  • Ventes
Marge bénéficiaire par jour (produits)

Les produits expirés

@if (count($products_expires) > 0)
@forelse($products_expires as $product) @empty @endforelse
Produit SKU Catégorie Marque Prix Quantité Créé par Actions
{{ $product->sku }} {{ $product->category->name ?? '-' }} {{ $product->brand->name ?? '-' }} {{ number_format($product->price, 0, ' ') }} FCFA {{ $product->quantity }} {{ $product->user->nom . ' ' . $product->user->prenom }}
@csrf @method('DELETE')
Aucun produit trouvé.
@else

Pas de produit(s) expiré(s)

@endif

Produits recents

@foreach ($products_recents as $index => $product) @endforeach
# Nom produit Prix
{{ $loop->iteration }} @if ($product->image) image-{{ $product->name }} @else image défaut @endif {{ Str::limit($product->name, 15, '...') }} {{ number_format($product->price, 0, ' ') }} FCFA
@endif @if (Auth::user()->role->name == 'Caissiere') @include('partials.dashboard-filter', ['filterId' => 'caissiere'])
Commandes & Ventes
  • Ventes
  • Commandes
Commandes
  • Commandes
Ventes
  • Ventes
Marge bénéficiaire par jour (produits)
@endif @if (Auth::user()->role->name == 'Gestionnaire') @include('partials.dashboard-filter', ['filterId' => 'gestionnaire'])

{{ count($clients) }}

Clients

{{ count($fournisseurs) }}

Fournisseurs

{{ count($products) }}

Total produits
icon

{{ count($categories) }}

Catégories
img
{{ number_format($total_ventes, 0, ' ', ' ') }} FCFA
Total Ventes (Global)
{{ number_format($total_ventes_produits, 0, ' ', ' ') }} FCFA Produits
@if ($servicesModuleEnabled ?? false)
{{ number_format($total_ventes_services, 0, ' ', ' ') }} FCFA Services
@endif
img
{{ number_format($total_gains, 0, ' ', ' ') }} FCFA
Total Gains (Global)
{{ number_format($total_gains_produits, 0, ' ', ' ') }} FCFA Produits
@if ($servicesModuleEnabled ?? false)
{{ number_format($total_gains_services, 0, ' ', ' ') }} FCFA Services
@endif
img
{{ number_format($total_achats, 0, ' ', ' ') }} FCFA
Valeur du stock (prix de vente)
img
{{ number_format($valeur_stock_achat, 0, ' ', ' ') }} FCFA
Valeur du stock (prix d'achat)
img
{{ number_format($marge_stock, 0, ' ', ' ') }} FCFA
Marge potentielle sur stock
img
{{ number_format($total_ravitaillements, 0, ' ', ' ') }} FCFA
Total ravitaillements
Commandes & Ventes
  • Ventes
  • Commandes
Commandes
  • Commandes
Ventes
  • Ventes
Marge bénéficiaire par jour (produits)

Les produits expirés

@if (count($products_expires) > 0)
@forelse($products_expires as $product) @empty @endforelse
Produit SKU Catégorie Marque Prix Quantité Créé par Actions
{{ $product->sku }} {{ $product->category->name ?? '-' }} {{ $product->brand->name ?? '-' }} {{ number_format($product->price, 0, ' ') }} FCFA {{ $product->quantity }} {{ $product->user->nom . ' ' . $product->user->prenom }}
@csrf @method('DELETE')
Aucun produit trouvé.
@else

Pas de produit(s) expiré(s)

@endif

Produits recents

@foreach ($products_recents as $index => $product) @endforeach
# Nom produit Prix
{{ $loop->iteration }} @if ($product->image) image-{{ $product->name }} @else image défaut @endif {{ Str::limit($product->name, 15, '...') }} {{ number_format($product->price, 0, ' ') }} FCFA
@endif @endsection