@extends('layouts.admin.master') @section('title', 'Dashboard') @section('content')
@php $totalEarning = 0; $infoBoxes = [ ['icon' => 'people.svg', 'text' => 'Total Members', 'number' => isset($memberCount) ? $memberCount : 0], ['icon' => 'money.svg', 'text' => 'Total Earnings', 'number' => $totalEarning], ['icon' => 'due.svg', 'text' => 'Total Due', 'number' => $totalEarning], ['icon' => 'total-expenses.svg', 'text' => 'Total Expenses', 'number' => $totalEarning] ]; @endphp @foreach ($infoBoxes as $box) @endforeach
{{--2nd row--}}
Total Members
Total Expenses
Total Active Members

{{isset($memberCount) ? $memberCount : 0}}

Current Month's Deposit
{{0}}
Current Month's Cost
{{0}}
Total Collection
@endsection @push('css') @endpush @push('js') @endpush