Server IP : 66.29.132.124 / Your IP : 3.144.224.105 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/Report/ |
Upload File : |
<?php namespace Modules\Report; use Modules\User\Models\Wallet\DepositPayment; class ModuleProvider extends \Modules\ModuleServiceProvider { public function register() { $this->app->register(RouteServiceProvider::class); } public static function getAdminMenu() { $count = 0; $pending_purchase = DepositPayment::countPending(); $count += $pending_purchase; return [ 'report'=>[ "position"=>110, 'url' => route('report.admin.booking'), 'title' => __('Reports :count',['count'=>$count ? sprintf('<span class="badge badge-warning">%d</span>',$count) : '']), 'icon' => 'icon ion-ios-pie', 'permission' => 'report_view', 'children' => [ 'enquiry'=>[ 'url' => route('report.admin.enquiry.index'), 'title' => __('Enquiry Reports'), 'icon' => 'icon ion-ios-pricetags', 'permission' => 'report_view', ], 'booking'=>[ 'url' => route('report.admin.booking'), 'title' => __('Booking Reports'), 'icon' => 'icon ion-ios-pricetags', 'permission' => 'report_view', ], 'statistic'=>[ 'url' => route('report.admin.statistic.index'), 'title' => __('Booking Statistic'), 'icon' => 'icon ion ion-md-podium', 'permission' => 'report_view', ], 'contact'=>[ 'url' => route('contact.admin.index'), 'title' => __('Contact Submissions'), 'icon' => 'icon ion ion-md-mail', 'permission' => 'contact_manage', ], 'buy_credit_report'=>[ 'parent'=>'report', 'url'=>route('user.admin.wallet.report'), 'title'=>__("Credit Purchase Report :count",['count'=>$pending_purchase ? sprintf('<span class="badge badge-warning">%d</span>',$pending_purchase) : '']), 'icon'=>'fa fa-money' ] ] ], ]; } }