@extends('layouts.master') @section('title', __("title.notification")) @section('pageContent') @include('layouts.breadcrumb', ['title' => __("breadcrumb.notification_title"), 'subtitle' => __("breadcrumb.notification_subtitle")]) @if ($listConsommation->isEmpty())
Aucune consommation trouvée actuellement pour votre société
@else
@foreach ($listConsommation as $consommation) @endforeach
Type Montant Date Voir
{{ $consommation->chargeRatedUsage->first()?->rating?->priceComponent?->description }} {{ number_format($consommation->amount_incl_tax, 2, '.', '') }}€ {{ $consommation->created_at->format('d/m/Y à H:i:s') }}
{{ $listConsommation->withQueryString()->links() }}
@endif @endsection @section('scripts') @endsection