⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.37
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
vhosts
/
raqmix.net
/
testpos.raqmix.net
/
app
/
View File Name :
CustomerGroup.php
'datetime', ]; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; /** * Return list of customer group for a business * * @param $business_id int * @param $prepend_none = true (boolean) * @param $prepend_all = false (boolean) * @return array */ public static function forDropdown($business_id, $prepend_none = true, $prepend_all = false) { $all_cg = CustomerGroup::where('business_id', $business_id); $all_cg = $all_cg->pluck('name', 'id'); //Prepend none if ($prepend_none) { $all_cg = $all_cg->prepend(__('lang_v1.none'), ''); } //Prepend none if ($prepend_all) { $all_cg = $all_cg->prepend(__('report.all'), ''); } return $all_cg; } }