@extends('admin.layouts')
@section('title', 'Dashboard')
@section('header')
@endsection
@section('content')
Dashboard
@if (Auth::user()->role === 'branch_admin' || Auth::user()->role !== 'admin')
{{ $user->building_name ?? 'Address not available' }}
{{ $user->name }}
Branch Details
Branch Name
:
{{ $user->name }}
Email
:
{{ $user->email }}
Phone
:
{{ $user->phone_number ?? 'N/A' }}
partner_exchange
Total Parties
{{ $customerCount }}
View
@else
add_shopping_cart
Product
card_membership
Total Membership
{{ $totalMembership }}
View
{{ $recentOrderCount }}
View
order_approve
Accepted Orders
{{ $acceptedOrderCount }}
View
@endif
@endsection
@section('footer')
@endsection