@include('common.header_links')
@include('common.header') @include('common.sidebar')

{{ $user_type->menu_name }}

@if(session('user')->user_type_id==2)
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.
@endif
@if(session('error'))
@endif @if(session('success'))
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $user_type->menu_name }} List

{{-- Dropdown --}} {{-- Search --}} {{-- Add New --}} Add New
@if(session('user')->user_type_id==1) @endif @foreach ($users as $index => $user) @if(session('user')->user_type_id==1) @endif @endforeach
# Name Email Mobile City Zip AddressPlan Name Last Date Of SubscriptionStatus Action
{{ ($users->currentPage() - 1) * $users->perPage() + $index + 1 }}. {{ $user->name }} {{ $user->email }} {{ $user->mobile }} {{ $user->city_name }} {{ $user->zip_code }} {{ $user->address }}{{ $user->plan_name }} {{ $user->end_date }}
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
@include('common.footer')
@include('common.script')