inital commit

This commit is contained in:
2024-02-01 09:53:53 +00:00
commit 9743fce12b
19771 changed files with 4230637 additions and 0 deletions

14
app/Models/InfoItem.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InfoItem extends Model
{
public function roadItemsProjects()
{
return $this->hasMany('App\Models\RoadItemsProject', 'sub_item', 'sub_item');
}
}