new database

This commit is contained in:
2021-04-19 09:15:15 +02:00
parent 24663071e6
commit 22a431da07
43 changed files with 423 additions and 302 deletions
+8 -3
View File
@@ -1,13 +1,18 @@
<?php
namespace Backend\Models;
use Illuminate\Database\Eloquent\Model as Eloquent;
class Password extends Eloquent{
protected $fillable =[
class Password extends Eloquent
{
protected $fillable = [
'password', 'remember_token'
];
public function group(){
public function group()
{
return $this->belongsTo(Group::class);
}