{{-- resources/views/rapports/lot-statistics.blade.php --}} @extends('layouts.app.app') @section('content') {{-- En-tête de la page --}}
Status | Nombre de Lots | Tickets Prévus | Tickets Créés | Taux de Création |
---|---|---|---|---|
{{ ucfirst($stat->status) }} | {{ number_format($stat->total_lots) }} | {{ number_format($stat->total_tickets_prevus) }} | {{ number_format($stat->total_tickets_crees) }} | @if($stat->total_tickets_prevus > 0) {{ number_format(($stat->total_tickets_crees / $stat->total_tickets_prevus) * 100, 1) }}% @else 0% @endif |