| 12345678910111213141516 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class WaybillFinancialExcepted extends Model
- {
- protected $fillable=[
- 'waybill_id','json_content'
- ];
- public function waybill(){
- return $this->belongsTo('App\Waybill','waybill_id','id');
- }
- }
|