| Current Path : /home/zada/www/app/Models/ |
| Current File : /home/zada/www/app/Models/CityTranslation.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
class CityTranslation extends Model
{
use PreventDemoModeChanges;
protected $fillable = ['name', 'lang', 'city_id'];
public function city(){
return $this->belongsTo(City::class);
}
}