Files
elcaribe/app/Models/CityTranslation.php
2023-08-07 15:52:04 -04:00

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);
}
}