middleware('auth'); } public function index() { $p = new Process(); $p->startTimer(); $services_count = Home::servicesCount(); $due_soon = Home::dueSoonData(); $server_summary = Home::serverSummary(); //Check for past due date and refresh the due date if so: $due_soon = Home::doDueSoon($due_soon); $recently_added = Home::recentlyAdded(); $settings = Cache::remember('settings', now()->addMinute(1), function () { return DB::table('settings') ->where('id', '=', 1) ->get(); }); Session::put('dark_mode', $settings[0]->dark_mode ?? 0); Session::put('timer_version_footer', $settings[0]->show_versions_footer ?? 1); Session::put('show_servers_public', $settings[0]->show_servers_public ?? 0); Session::put('show_server_value_ip', $settings[0]->show_server_value_ip ?? 0); Session::put('show_server_value_hostname', $settings[0]->show_server_value_hostname ?? 0); Session::put('show_server_value_price', $settings[0]->show_server_value_price ?? 0); Session::put('show_server_value_yabs', $settings[0]->show_server_value_yabs ?? 0); Session::put('show_server_value_provider', $settings[0]->show_server_value_provider ?? 0); Session::put('show_server_value_location', $settings[0]->show_server_value_location ?? 0); Session::put('default_currency', $settings[0]->default_currency ?? 'USD'); Session::put('default_server_os', $settings[0]->default_server_os ?? 1); Session::put('due_soon_amount', $settings[0]->due_soon_amount ?? 6); Session::put('recently_added_amount', $settings[0]->recently_added_amount ?? 6); Session::save(); $all_pricing = Pricing::allPricing(); $services_count = json_decode($services_count, true); $servers_count = $domains_count = $shared_count = $reseller_count = $other_count = $seedbox_count = $total_services = 0; foreach ($services_count as $sc) { $total_services += $sc['amount']; if ($sc['service_type'] === 1) { $servers_count = $sc['amount']; } else if ($sc['service_type'] === 2) { $shared_count = $sc['amount']; } else if ($sc['service_type'] === 3) { $reseller_count = $sc['amount']; } else if ($sc['service_type'] === 4) { $domains_count = $sc['amount']; } else if ($sc['service_type'] === 5) { $other_count = $sc['amount']; } else if ($sc['service_type'] === 6) { $seedbox_count = $sc['amount']; } } $pricing_breakdown = Home::breakdownPricing($all_pricing); $p->stopTimer(); $information = array( 'servers' => $servers_count, 'domains' => $domains_count, 'shared' => $shared_count, 'reseller' => $reseller_count, 'misc' => $other_count, 'seedbox' => $seedbox_count, 'labels' => Labels::labelsCount(), 'dns' => DNS::dnsCount(), 'total_services' => $total_services, 'total_inactive' => $pricing_breakdown['inactive_count'], 'total_cost_weekly' => number_format($pricing_breakdown['total_cost_weekly'], 2), 'total_cost_monthly' => number_format($pricing_breakdown['total_cost_montly'], 2), 'total_cost_yearly' => number_format($pricing_breakdown['total_cost_yearly'], 2), 'total_cost_2_yearly' => number_format(($pricing_breakdown['total_cost_yearly'] * 2), 2), 'due_soon' => $due_soon, 'newest' => $recently_added, 'execution_time' => number_format($p->getTimeTaken(), 2), 'servers_summary' => $server_summary ); return view('home', compact('information')); } }