@extends('layouts.nav') @section('title') Dashboard @endsection @section('content')

Dashboard

@foreach ($dashboard as $d)
Total Tenants
{{ $d->countTenants}}
Total Suppliers
{{ $d->countSuppliers}}
Total Space
{{ $d->countSpace}}
Total Floors
{{ $d->countFloors}}
Total Rooms
{{ $d->countRooms}}
Monthly Rent Summary
{{ $d->RentSummary}}
Monthly Rent Collection
{{ $d->totalIncome}}
Outstanding Rent
{{ $d->OutstandingRent}}
Op Costs Summary
{{ $d->OpcostSummary}}
Op Costs Collection
{{ $d->totalOptcosts}}
Outstanding Op costs
{{ $d->Outstandingopcosts}}
Monthly Expenses
{{ $d->Expenses}}
Tenants & Floors Summary
Total Rooms and Space Overview
Summary Trends: Tenants, Floors, Rooms & Space
@endforeach @endsection