12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Models;
- class RepairDevice extends BaseModel
- {
- public function parts()
- {
- return $this->hasMany('App\Models\Part', 'repair_device_id');
- }
- public function user()
- {
- return $this->belongsTo('App\Models\User', 'user_id');
- }
- public function project()
- {
- return $this->belongsTo('App\Models\Project', 'project_id');
- }
- public function inner_device()
- {
- return $this->belongsTo('App\Models\InnerDevice', 'inner_device_id');
- }
- public function work_point()
- {
- return $this->belongsTo('App\Models\WorkPoint', 'work_point_id');
- }
- }
|