PHP Classes

File: resources/views/livewire/backend/dashboard.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/livewire/backend/dashboard.blade.php   Download  
File: resources/views/livewire/backend/dashboard.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 3 years ago
Size: 925 bytes
 

Contents

Class file image Download
@section('content')
    <h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
        {{ __('Dashboard') }}
    </h2>
    <div class="grid gap-7 sm:grid-cols-2 lg:grid-cols-4 mt-6">
        <div class="p-5 bg-white rounded border">
            <div class="text-base text-gray-400 ">{{ __('Total Users') }}</div>
            <div class="flex items-center pt-1">
                <div class="text-2xl font-bold text-gray-900 ">{{ ReadableNumber(\App\Models\Auth\User::all()->count()) }}</div>
            </div>
        </div>

        <div class="p-5 bg-white rounded border">
            <div class="text-base text-gray-400 ">{{ __('Total Channels') }}</div>
            <div class="flex items-center pt-1">
                <div class="text-2xl font-bold text-gray-900 ">{{ ReadableNumber(\App\Models\Channel\Channel::all()->count()) }}</div>
            </div>
        </div>
    </div>
@endsection