⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.113
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
vhosts
/
raqmix.net
/
testpos.raqmix.net
/
app
/
Edit File: Brands.php
<?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; } }
Simpan