|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/app/ |
Upload File : |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CustomerGroup extends Model
{
protected $casts = [
'deleted_at' => '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;
}
}