This commit is contained in:
Masroor Ehsan 2025-01-06 21:22:25 +06:00
parent f9491b306f
commit 0870b54855
3 changed files with 6 additions and 5 deletions

View File

@ -4,7 +4,7 @@
use App\DAL\Studies\WorklistFactory; use App\DAL\Studies\WorklistFactory;
use App\Models\Study; use App\Models\Study;
use Blade; use Illuminate\Support\Facades\Blade;
use Carbon\Carbon; use Carbon\Carbon;
use Carbon\CarbonImmutable; use Carbon\CarbonImmutable;
use Illuminate\Database\Eloquent\Builder as QueryBuilder; use Illuminate\Database\Eloquent\Builder as QueryBuilder;

View File

@ -32,6 +32,9 @@ class User extends Authenticatable
use Notifiable; use Notifiable;
use TwoFactorAuthenticatable; use TwoFactorAuthenticatable;
public array $info = [];
/** /**
* The attributes that are mass assignable. * The attributes that are mass assignable.
* *
@ -151,6 +154,4 @@ protected function casts(): array
'password' => 'hashed', 'password' => 'hashed',
]; ];
} }
public array $info = [];
} }