'required|min:1|max:255', 'model_number' => 'min:1|max:255', 'category_id' => 'required|integer', 'manufacturer_id' => 'required|integer', 'eol' => 'integer:min:0|max:240', ); /** * 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 boolean */ protected $injectUniqueIdentifier = true; use ValidatingTrait; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['name','manufacturer_id','category_id','eol']; public function assets() { return $this->hasMany('\App\Models\Asset', 'model_id'); } public function category() { return $this->belongsTo('\App\Models\Category', 'category_id'); } public function depreciation() { return $this->belongsTo('\App\Models\Depreciation', 'depreciation_id'); } public function adminuser() { return $this->belongsTo('\App\Models\User', 'user_id'); } public function manufacturer() { return $this->belongsTo('\App\Models\Manufacturer', 'manufacturer_id'); } public function fieldset() { return $this->belongsTo('\App\Models\CustomFieldset', 'fieldset_id'); } /** * ----------------------------------------------- * BEGIN QUERY SCOPES * ----------------------------------------------- **/ /** * Query builder scope for Deleted assets * * @param Illuminate\Database\Query\Builder $query Query builder instance * @return Illuminate\Database\Query\Builder Modified query builder */ public function scopeDeleted($query) { return $query->whereNotNull('deleted_at'); } /** * scopeInCategory * Get all models that are in the array of category ids * * @param $query * @param array $categoryIdListing * * @return mixed * @author Vincent Sposato * @version v1.0 */ public function scopeInCategory($query, array $categoryIdListing) { return $query->whereIn('category_id', $categoryIdListing); } /** * scopeRequestable * Get all models that are requestable by a user. * * @param $query * * @return $query * @author Daniel Meltzer where('requestable', '1'); } /** * Query builder scope to search on text * * @param Illuminate\Database\Query\Builder $query Query builder instance * @param text $search Search term * * @return Illuminate\Database\Query\Builder Modified query builder */ public function scopeTextSearch($query, $search) { return $query->where('name', 'LIKE', "%$search%") ->orWhere('model_number', 'LIKE', "%$search%") ->orWhere(function ($query) use ($search) { $query->whereHas('depreciation', function ($query) use ($search) { $query->where('name', 'LIKE', '%'.$search.'%'); }); }) ->orWhere(function ($query) use ($search) { $query->whereHas('category', function ($query) use ($search) { $query->where('name', 'LIKE', '%'.$search.'%'); }); }) ->orWhere(function ($query) use ($search) { $query->whereHas('manufacturer', function ($query) use ($search) { $query->where('name', 'LIKE', '%'.$search.'%'); }); }); } }