OwlCyberSecurity - MANAGER
Edit File: City.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; class City extends Model { protected $fillable = [ 'title', 'state_id', ]; public function state(): BelongsTo { return $this->belongsTo(State::class, 'state_id', 'id'); } }