ultimatepos/app/CustomerGroup.php

46 lines
1016 B
PHP

<?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;
}
}