Files
elcaribe/desarrollo/app/Models/RoleTranslation.php

15 lines
245 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class RoleTranslation extends Model
{
protected $fillable = ['name', 'lang', 'role_id'];
public function role(){
return $this->belongsTo(Role::class);
}
}