WaybillFinancialExcepted.php 404 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelTimeFormat;
  5. use App\Traits\LogModelChanging;
  6. class WaybillFinancialExcepted extends Model
  7. {
  8. use LogModelChanging;
  9. use ModelTimeFormat;
  10. protected $fillable=[
  11. 'waybill_id','json_content'
  12. ];
  13. public function waybill(){
  14. return $this->belongsTo('App\Waybill','waybill_id','id');
  15. }
  16. }