refx
This commit is contained in:
parent
f9491b306f
commit
0870b54855
@ -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;
|
||||
|
@ -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 = [];
|
||||
}
|
||||
|
@ -35,7 +35,7 @@
|
||||
<div class="d-flex flex-column">
|
||||
<span class="text-truncate fw-semibold mb-0">
|
||||
{{ $doc->display_name }}
|
||||
@if($study->isAssigned($doc->id))
|
||||
@if ($study->isAssigned($doc->id))
|
||||
<span class="badge bg-success badge-dot ms-2"></span>
|
||||
@endif
|
||||
</span>
|
||||
@ -47,7 +47,7 @@
|
||||
{{ $doc->info['workload'] }}
|
||||
</td>
|
||||
<td>
|
||||
@if($study->isAssigned($doc->id))
|
||||
@if ($study->isAssigned($doc->id))
|
||||
@else
|
||||
<form action="{{ route('staff.assign.save', $study->hash) }}" class="inline" method="post">
|
||||
@csrf
|
||||
|
Loading…
Reference in New Issue
Block a user