Viewing file: Product.php (1.11 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webkul\Lead\Models;
use Illuminate\Database\Eloquent\Model; use Webkul\Lead\Contracts\Product as ProductContract; use Webkul\Product\Models\ProductProxy;
class Product extends Model implements ProductContract { protected $table = 'lead_products';
/** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'quantity', 'price', 'amount', 'product_id', 'lead_id', ];
/** * Get the product owns the lead product. */ public function product() { return $this->belongsTo(ProductProxy::modelClass()); }
/** * Get the lead that owns the lead product. */ public function lead() { return $this->belongsTo(LeadProxy::modelClass()); }
/** * Get the customer full name. */ public function getNameAttribute() { return $this->product->name; }
/** * @return array */ public function toArray() { $array = parent::toArray();
$array['name'] = $this->name;
return $array; } }
|