first commit

This commit is contained in:
2019-09-25 22:36:21 -05:00
commit e94b153718
92 changed files with 9120 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Models\User;
use Illuminate\Database\Eloquent\Model;
class UserRole extends Model
{
/**
* Table Name
*/
protected $table = 'user_roles';
/**
* Mass assignable items
*
* @var array
*/
protected $fillable = [
'character_id',
'role',
];
public function user() {
return $this->belongsTo(User::class);
}
}