@inject('projectStatuses', 'App\Entities\Projects\Status') @extends('layouts.dashboard') @section('title', trans('nav_menu.dashboard')) @section('content-dashboard')
Project Status Stats
@foreach($projectStatuses::all() as $statusId => $status) @if ($statusId == 4)
@endif
@include('view-components.dashboard-panel', [ 'class' => $projectStatuses->getColorById($statusId), 'icon' => $projectStatuses->getIconById($statusId), 'number' => array_key_exists($statusId, $projectStatusStats) ? $projectStatusStats[$statusId] : 0, 'text' => $projectStatuses::getNameById($statusId), 'linkRoute' => route('projects.index', ['status' => $statusId]), ])
@if ($statusId == 3)
@endif @endforeach
Earnings Stats Upcoming Subscriptions Due Dates
@foreach(range(1, 4) as $subscription) @endforeach
Project Items Tagihan Due Date
Project {{ $subscription }} Hosting & Domain {{ formatRp(rand(1, 3).'000000') }} 2017-12-01
@endsection