Viewing file: Warehouse.php (1.39 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webkul\Warehouse\Models;
use Illuminate\Database\Eloquent\Model; use Webkul\Activity\Models\ActivityProxy; use Webkul\Activity\Traits\LogsActivity; use Webkul\Attribute\Traits\CustomAttribute; use Webkul\Tag\Models\TagProxy; use Webkul\Warehouse\Contracts\Warehouse as WarehouseContract;
class Warehouse extends Model implements WarehouseContract { use CustomAttribute, LogsActivity;
/** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'description', 'contact_name', 'contact_emails', 'contact_numbers', 'contact_address', ];
/** * The attributes that are castable. * * @var array */ protected $casts = [ 'contact_emails' => 'array', 'contact_numbers' => 'array', 'contact_address' => 'array', ];
/** * Get the locations for the warehouse. */ public function locations() { return $this->hasMany(LocationProxy::modelClass()); }
/** * The tags that belong to the lead. */ public function tags() { return $this->belongsToMany(TagProxy::modelClass(), 'warehouse_tags'); }
/** * Get the activities. */ public function activities() { return $this->belongsToMany(ActivityProxy::modelClass(), 'warehouse_activities'); } }
|