added geojson extractor

This commit is contained in:
noyamii
2025-08-19 14:02:59 +03:30
parent c2be14a183
commit d2afe15a2f
3 changed files with 164 additions and 0 deletions

View File

@@ -23,6 +23,10 @@ class City extends Model
'updated_at'
];
protected $fillable = [
'geometry',
];
public function province()
{
return $this->belongsTo('App\Models\Province');