Server IP : 66.29.132.124 / Your IP : 13.59.195.78 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Dashboard/Admin/ |
Upload File : |
<?php namespace Modules\Dashboard\Admin; use Illuminate\Http\Request; use Modules\AdminController; use Modules\Booking\Models\Booking; class DashboardController extends AdminController { public function index() { $f = strtotime('monday this week'); $data = [ 'recent_bookings' => Booking::getRecentBookings(), 'top_cards' => Booking::getTopCardsReport(), 'earning_chart_data' => Booking::getDashboardChartData($f, time()) ]; return view('Dashboard::index', $data); } public function reloadChart(Request $request) { $chart = $request->input('chart'); switch ($chart) { case "earning": $from = $request->input('from'); $to = $request->input('to'); return $this->sendSuccess([ 'data' => Booking::getDashboardChartData(strtotime($from), strtotime($to)) ]); break; } } }