📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 02:31:14
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
app
/
Models
📍 /home/orkouolp/web/testing.orkobd/laravel/app/Models
🔄 Refresh
✏️
Editing: City.php
Writable
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class City extends Model { protected $fillable = [ 'id', 'name', 'state_id', 'country_id', 'created_at', 'updated_at' ]; function state() { return $this->belongsTo(State::class, 'state_id', 'id'); } function country() { return $this->belongsTo(Country::class, 'country_id', 'id'); } }
💾 Save Changes
❌ Cancel