109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use App\Models\Traits\Searchable;
 | 
						|
use App\Presenters\Presentable;
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\SoftDeletes;
 | 
						|
use Illuminate\Support\Facades\Gate;
 | 
						|
use Watson\Validating\ValidatingTrait;
 | 
						|
 | 
						|
class Manufacturer extends SnipeModel
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    protected $presenter = \App\Presenters\ManufacturerPresenter::class;
 | 
						|
    use Presentable;
 | 
						|
    use SoftDeletes;
 | 
						|
 | 
						|
    protected $table = 'manufacturers';
 | 
						|
 | 
						|
    // Declare the rules for the form validation
 | 
						|
    protected $rules = [
 | 
						|
        'name'   => 'required|min:2|max:255|unique:manufacturers,name,NULL,id,deleted_at,NULL',
 | 
						|
        'url'   => 'url|nullable',
 | 
						|
        'support_email'   => 'email|nullable',
 | 
						|
        'support_url'   => 'nullable|url',
 | 
						|
        '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');
 | 
						|
    }
 | 
						|
}
 |