| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class ProcessesContent extends Model
- {
- protected $fillable=[
- 'process_id','bill_type','commodity_id','wms_code','amount'
- ];
- protected $appends=[
- 'commodity_name','commodity_barcode',
- ];
- public function process(){
- return $this->belongsTo('App\Process','process_id','id');
- }
- public function commodity(){
- return $this->belongsTo('App\Commodity','commodity_id','id');
- }
- public function getCommodityNameAttribute()
- {
- return $this['commodity']? $this['commodity']['name']:null;
- }
- public function getCommodityBarcodeAttribute()
- {
- return $this['commodity']? $this['commodity']['barcode']:null;
- }
- }
|