HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/app/Models/
Upload File :
Current File : //proc/thread-self/cwd/app/Models/PageTranslation.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);

  }

}