@extends('layouts.app')
@section('title' , __('messages.Home'))
@section('content')
@include('inc.breadcrumb' , ['breadcrumb_items'=>[
__('messages.Home')=>"active",
]])
@if (date('a') == 'am')
@if (app()->getLocale() == "ar")
صباح الخير يا {{ auth()->user()->name }}
@else
Good morning, {{ auth()->user()->name }}
@endif
@else
@if (app()->getLocale() == "ar")
مساء الخير يا {{ auth()->user()->name }}
@else
Good evening, {{ auth()->user()->name }}
@endif
@endif
😍
{{ $admins_count }}
{{ __("messages.Administration") }}
{{ $owners_count }}
{{ __("messages.Owners") }}
{{ $tenants_count }}
{{ __("messages.Tenants") }}
@endsection
@section('script')
@endsection