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