WaybillFinancialExcepted.php 286 B

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