OwlCyberSecurity - MANAGER
Edit File: members.blade.php
@extends('layouts.master') @section('title') SPORTPESA | USER MANAGEMENT @endsection @section('page') {{$title}} {{--<button class="btn btn-sm btn-success pull-right" id="exportbtn"><span class="fa fa-download"></span> DOWNLOAD AS SPREADSHEET</button>--}} @endsection @section('content') <div class="row"> <div class="col-sm-12 bg-danger"> <br> <form action="{{route('/searchMember')}}" method="POST"> <div class="form-group form-group-lg col-sm-6"> <input type="text" name="term" class="form-control" required placeholder="search: ID, Name, Email, Username & Country"> </div> {{ csrf_field() }} <div class="form-group form-group-lg col-sm-6"> <button class="btn btn-lg btn-success"><i class="fa fa-search"></i></button> </div> </form> </div> </div> <div class="col" style="min-height: 323px;;"> {{$members->render()}} <table id="datatable" class="table table-striped table-bordered nowrap" cellspacing="0" width="100%"> <thead> <tr> <th>SN</th> <th>ID</th> <th>FULL NAME</th> <th>EMAIL ADDRESS</th> <th>USERNAME</th> <th>COUNTRY</th> {{--<th>REGISTERED</th>--}} {{--<th>Details</th>--}} <th>Controls</th> </tr> </thead> <tbody> <?php $sn = 1; ?> @foreach($members->all() as $user) <tr id="d{{$user->id}}"> <td>{{$sn++}}</td> <td class="red">{{$user->id}}</td> <td>{{$user->full_name}}</td> <td>{{$user->email}}</td> <td>{{$user->username}}</td> <td>{{$user->country}}</td> {{-- <td>{{$user->created_at->format('d M, Y')}}</td>--}} {{--<td><a class="gameview" href="{{$user->id}}" data-target="#userdetail" data-toggle="modal"><span style="color: green;"><span class="fa fa-eye"></span> VIEW</span></a></td>--}} {{--<td>--}} <td> <div class="btn-group"> {{--<a href=""><button class="btn btn-sm btn-primary" title="VIEW DETAILS"></button></a>--}} <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> Actions <span class="caret"></span> </button> <ul class="dropdown-menu pull-right" role="menu" style="background: whitesmoke; -webkit-box-shadow: inset 0px 0px 10px grey;-moz-box-shadow: inset 0px 0px 10px grey;box-shadow: inset 0px 0px 10px grey;"> <li></li> <li style="cursor: pointer;"><a class="userdetails" href="{{$user->id}}" data-target="#userdetails" data-toggle="modal">VIEW DETAILS</a></li> <li style="cursor: pointer;"><a class="updateuser" href="{{$user->id}}" data-target="#updateuserinfo" data-toggle="modal">EDIT/UPDATE</a></li> <li style="cursor: pointer;"><a class="upgradeuser" href="{{$user->id}}" data-target="#upgradeuser" data-toggle="modal"><span class="fa fa-credit-card"></span> UPGRADE ACCOUNT</a></li> @if($user->subscription_status=='1') <li style="cursor: pointer;" id="un{{$user->id}}"><a class="unsubscribeUser" href="{{route('/unSubscribe')}}" data-id="{{$user->id}}" style="color: #ef5350;" data-msg="DO YOU REALLY WANT TO UN-SUBSCRIBE THIS USER?"><span class="fa fa-times-circle-o"></span> UN-SUBSCRIBE USER</a></li> @endif <li class="divider"></li> @if($user->flag=='0') <li style="cursor: pointer;"><a class="flaguser" href="{{$user->id}}" id="f{{$user->id}}">FLAG USER</a> @else <li style="cursor: pointer;"><a class="unflaguser" href="{{$user->id}}" id="f{{$user->id}}"><span style="color: red;">UNFLAG USER</span></a> @endif @if($user->status=='0') <li style="cursor: pointer;"><a class="disableuser" href="{{$user->id}}" id="h{{$user->id}}">DISABLE USER</a> @else <li style="cursor: pointer;"><a class="enableuser" href="{{$user->id}}" id="h{{$user->id}}"><span style="color: green;">ENABLE USER</span></a> @endif <li style="cursor: pointer;"><a class="userdelete" href="{{$user->id}}" data-target="#userdelete" data-toggle="modal">DELETE USER</a> </li> </ul> </div> </td> </tr> @endforeach </tbody> </table> {{$members->render()}} </div> {{--<div class="row" id="excon">--}} {{--<table class="table" id="exportthis">--}} {{--<thead>--}} {{--<tr>--}} {{--<th>S/N</th>--}} {{--<th>FULL NAME</th>--}} {{--<th>EMAIL ADDRESS</th>--}} {{--<th>USERNAME</th>--}} {{--<th>DATE/TIME REGISTERED</th>--}} {{--</tr>--}} {{--</thead>--}} {{--<tbody>--}} {{--@foreach($members->all() as $p)--}} {{--<tr>--}} {{--<td>{{$p->id}}</td>--}} {{--<td>{{$p->full_name}}</td>--}} {{--<td>{{$p->email}}</td>--}} {{--<td>{{$p->username}}</td>--}} {{--<td>{{$p->created_at}}</td>--}} {{--</tr>--}} {{--@endforeach--}} {{--</tbody>--}} {{--</table>--}} {{--</div>--}} @endsection