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

15 lines
249 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PageTranslation extends Model
{
protected $fillable = ['page_id', 'title', 'content', 'lang'];
public function page(){
return $this->belongsTo(Page::class);
}
}