<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class TutorialTranslation extends Model
{
protected $fillable = ['tutorial_id', 'locale', 'title', 'body'];
public function tutorial()
{
return $this->belongsTo(Tutorial::class);
}
}