| 123456789101112131415161718192021222324252627 |
- <?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',
- ];
- 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;
- }
- }
|