@extends('admin.layout.master') @section('content')
{{-- Add class .table-bordered --}}
| S.no | Name | Phone | Status | Enable/Disable | Action | |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ ucwords($user->name) }} | {{ $user->email }} | {{ $user->phone }} | @if ($user->status === null) Approve Decline @elseif ($user->status == 1) Approved @else Declined @endif | loginstatus === 1 ? 'checked' : '' }} onclick="userAction('{{$user->id}}', this, '{{$user->loginstatus}}')"> | {{-- Edit --}} Delete |