| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class ReportSegnaleticaOrizzontale3 extends Model
- {
- use HasFactory;
- public $timestamps = false;
- protected $table = 'fcf_reports_reports_segnaletica_orizzontale_3';
- protected $fillable = [
- 'report_id',
- 'segnaletica_orizzontale_id'
- ];
- public function segnaletica_orizzontale()
- {
- return $this->belongsTo(\App\Models\SegnalazioneOrizzontale::class, 'segnaletica_orizzontale_id');
- }
- }
|