15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CityTranslation extends Model
|
|
{
|
|
protected $fillable = ['name', 'lang', 'city_id'];
|
|
|
|
public function city(){
|
|
return $this->belongsTo(City::class);
|
|
}
|
|
}
|