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