@extends('superadmin.layouts.main') @extends('superadmin.layouts.top_bar') @section('page_title', 'Dashboard Screen') @section('header_styles') @endsection @section('header_scripts') @endsection @php $adminsCount = isset($Admins) ? count($Admins) : 0; $shopsCount = isset($Shops) ? count($Shops) : 0; @endphp @section('content')

Dashboard

Hello, {{auth('superadmin')->user()->name}}
Welcome To Dashboard

{{$adminsCount}}
No. Of Admins
{{$shopsCount}}
No. Of Shops
@endsection @section('footer_modals') @endsection @section('footer_scripts') @endsection