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