added new migrations and models

This commit is contained in:
Jagad R R
2024-12-11 12:29:37 +07:00
parent 0168f5b32f
commit fc5372a181
21 changed files with 436 additions and 7 deletions
+4
View File
@@ -6,11 +6,13 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\SoftDeletes;
class User extends Authenticatable
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable;
use SoftDeletes;
/**
* The attributes that are mass assignable.
@@ -20,7 +22,9 @@ class User extends Authenticatable
protected $fillable = [
'name',
'email',
'username',
'password',
'phone',
];
/**