@extends('layouts/layoutMaster') @php $is_admin = auth()->user()->role === 'admin'; $allowed = $is_admin; @endphp @section('vendor-style') @vite([ 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/apex-charts/apexcharts.js', ]) @endsection @section('title', 'Tableau de bord') @section('nav-title') Tableau de bord @endsection @section('content') {{-- ADMIN --}} @if($allowed)
@include('dashboard.filtres-top')
{{-- TOP 10 PIZZAS --}} @include('dashboard.top_pizzas') {{-- Tableau Recapitulatif --}} @include('layouts.recap_table') {{-- Download EXPERT --}} @if(Request::get('annee', date('Y')) >= 2025) @include('dashboard.export_expert') @endif {{-- EXPERT COMPTABLE INVERSE--}} @else {{-- Download EXPERT --}} @if(Request::get('annee', date('Y')) >= 2025) @include('dashboard.export_expert') @endif {{-- Tableau Recapitulatif --}} @include('layouts.recap_table') {{-- TOP 10 PIZZAS --}} @include('dashboard.top_pizzas') @endif @endsection