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\Models\Study;
use Blade;
use Illuminate\Support\Facades\Blade;
use Carbon\Carbon;
use Carbon\CarbonImmutable;
use Illuminate\Database\Eloquent\Builder as QueryBuilder;

View File

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