{{ $user_type->menu_name }}
@if(session('user')->user_type_id==2)
@endif
This is the list of {{ $user_type->menu_name }}. You can edit existing entries, but deletion is restricted if they are linked to any records.
{{ $user_type->menu_name }}(s) that are connected to records cannot be deleted to maintain system integrity.
@if(session('error'))
@endif
@if(session('success'))
@endif
@if ($errors->any())
@endif
Error! {{ session('error') }}
Success! {{ session('success') }}
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{ $user_type->menu_name }} List
{{-- Dropdown --}}
{{-- Search --}}
{{-- Add New --}}
Add New
| # | Name | Mobile | City | Zip | Address | @if(session('user')->user_type_id==1)Plan Name | Last Date Of Subscription | @endifStatus | Action | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ ($users->currentPage() - 1) * $users->perPage() + $index + 1 }}. | {{ $user->name }} | {{ $user->email }} | {{ $user->mobile }} | {{ $user->city_name }} | {{ $user->zip_code }} | {{ $user->address }} | @if(session('user')->user_type_id==1){{ $user->plan_name }} | {{ $user->end_date }} | @endif
active_stat == 0 ? 'checked' : '' }}
onclick="confirmAndGoToUrlStatusChange(
'Please confirm',
'Are you sure you want to {{ $user->active_stat == 0 ? 'activate' : 'deactivate' }} {{ $user->name }}? Changing its status will take effect immediately. Do you want to continue?',
'info',
'{{ route('changeLaboratoruAdminStatus', [$user->user_id, $user->active_stat]) }}',
this
)"
>
|
Edit Delete |