@extends('backend.layouts.master') @section('title') Statistiques @endsection @section('body')
@endsection @section('content') {{-- @component('components.breadcrumb') @slot('page_title') Statistiques @endslot @slot('subtitle') Statistiques @endslot @endcomponent --}} @php $allParticipantsCount = App\Models\Participant::where('code_pre_registration', '!=', '') ->where('event_id', '=', $event->id) ->orWhereNull('code_pre_registration') ->count(); $allParticipantsCount = App\Models\Participant::where('event_id', '=', $event->id)->count(); $validatedParticpantsCount = App\Models\Participant::where('code', '!=', '') ->where('event_id', '=', $event->id) ->whereNotNull('code') ->count(); $presentParticipantsCount = App\Models\Participant::where('code', '!=', '') ->where('event_id', '=', $event->id) ->whereNotNull('code') ->where('is_present', 1) ->count(); @endphpPré-inscriptions
Inscriptions
Présences