'required|min:2|max:255|unique:manufacturers,name,NULL,id,deleted_at,NULL', 'url' => 'nullable|starts_with:http://,https://,afp://,facetime://,file://,irc://', 'support_email' => 'email|nullable', 'support_url' => 'nullable|starts_with:http://,https://,afp://,facetime://,file://,irc://', 'warranty_lookup_url' => 'nullable|starts_with:http://,https://,afp://,facetime://,file://,irc://' ]; protected $hidden = ['user_id']; /** * Whether the model should inject it's identifier to the unique * validation rules before attempting validation. If this property * is not set in the model it will default to true. * * @var bool */ protected $injectUniqueIdentifier = true; use ValidatingTrait; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'image', 'support_email', 'support_phone', 'support_url', 'url', 'warranty_lookup_url', ]; use Searchable; /** * The attributes that should be included when searching the model. * * @var array */ protected $searchableAttributes = ['name', 'created_at']; /** * The relations and their attributes that should be included when searching the model. * * @var array */ protected $searchableRelations = []; public function isDeletable() { return Gate::allows('delete', $this) && ($this->assets()->count() === 0) && ($this->licenses()->count() === 0) && ($this->consumables()->count() === 0) && ($this->accessories()->count() === 0) && ($this->deleted_at == ''); } public function assets() { return $this->hasManyThrough(\App\Models\Asset::class, \App\Models\AssetModel::class, 'manufacturer_id', 'model_id'); } public function models() { return $this->hasMany(\App\Models\AssetModel::class, 'manufacturer_id'); } public function licenses() { return $this->hasMany(\App\Models\License::class, 'manufacturer_id'); } public function accessories() { return $this->hasMany(\App\Models\Accessory::class, 'manufacturer_id'); } public function consumables() { return $this->hasMany(\App\Models\Consumable::class, 'manufacturer_id'); } }