53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Report;
|
|
|
|
use App\Models\Map\MapList;
|
|
use App\Models\Map\MapSegment;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
class ReportSegment extends Model
|
|
{
|
|
use HasFactory, HasUuids;
|
|
protected $table = 'report.report_segment';
|
|
|
|
protected $fillable = [
|
|
'report_id',
|
|
'segment_id',
|
|
'level',
|
|
'type',
|
|
'rate',
|
|
'comment',
|
|
'note'
|
|
];
|
|
|
|
public function report()
|
|
{
|
|
return $this->belongsTo(ReportList::class, 'report_id');
|
|
}
|
|
|
|
public function segmen()
|
|
{
|
|
return $this->belongsTo(MapSegment::class, 'segment_id');
|
|
}
|
|
|
|
public function report_photo()
|
|
{
|
|
return $this->hasMany(ReportPhoto::class, 'report_segment_id');
|
|
}
|
|
|
|
public function report_photo_repair()
|
|
{
|
|
return $this->hasMany(ReportPhotoRepair::class, 'report_segment_id');
|
|
}
|
|
|
|
public function irrigation()
|
|
{
|
|
return $this->hasOneThrough(MapList::class, MapSegment::class, 'id', 'id', 'segment_id', 'irrigation_id');
|
|
}
|
|
}
|