Files
backend/app/Models/RoadObservationHistory.php
2024-02-01 09:53:53 +00:00

23 lines
400 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class RoadObservationHistory extends Model
{
protected $guarded = [];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [];
public function problem()
{
return $this->belongsTo('App\Models\RoadObserved');
}
}