@extends('backend.app')
@section('title', 'Dashboard')
@section('content')
{{-- PAGE-HEADER --}}
{{-- PAGE-HEADER --}}
@php
$totalUser = App\Models\User::all()->count();
$totalFeedback = App\Models\UserFeedback::all()->count();
$totalNote = App\Models\Note::all()->count();
$totalManulNote = App\Models\Note::where('type', 'manual')->count();
$totalRecordNote = App\Models\Note::where('type', 'recording')->count();
$totalYoutubeNote = App\Models\Note::where('type', 'link')->count();
@endphp
{{-- Total user --}}
{{-- Total feedback --}}
{{-- Total note --}}
{{-- Total manul note --}}
{{-- Total Record note --}}
{{-- Total Youtube note --}}
@endsection