/
home
/
techb158
/
ileadtechnology.com
/
resources
/
views
/
admin
/
user
/
/home/techb158/ileadtechnology.com/resources/views/admin/user
mkdir
upload
Name
Size
Mode
Actions
adduser.blade.php
11943
0644
edit
dl
rm
edit.blade.php
14984
0644
edit
dl
rm
index.blade.php
4509
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/resources/views/admin/user/index.blade.php
(4509B)
@extends('admin.layouts.master') @section('title', 'View User - Admin') @section('body') @if ($errors->any()) <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif <section class="content"> @include('admin.message') <div class="row"> <div class="col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">{{ __('adminstaticword.Users') }}</h3> <a class="btn btn-info btn-sm" href="{{ route('user.add') }}">+ {{ __('adminstaticword.Add') }} {{ __('adminstaticword.User') }}</a> </div> <!-- /.box-header --> <div class="box-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped table-responsive display nowrap"> <thead> <th>#</th> <th>{{ __('adminstaticword.Image') }}</th> <th>{{ __('adminstaticword.Name') }}</th> <th>{{ __('adminstaticword.Email') }}</th> <th>{{ __('adminstaticword.Role') }}</th> <th>{{ __('adminstaticword.Mobile') }}</th> <th>{{ __('adminstaticword.Country') }}</th> <th>{{ __('adminstaticword.Status') }}</th> <th>{{ __('adminstaticword.Edit') }}</th> <th>{{ __('adminstaticword.Delete') }}</th> </thead> <tbody> <?php $i=0;?> @foreach ($users as $user) @if($user->id != Auth::User()->id) <?php $i++;?> <tr> <td><?php echo $i;?></td> <td> @if($user->user_img != null || $user->user_img !='') <img src="{{ url('/images/user_img/'.$user->user_img) }}" class="img-responsive"> @else <img src="{{ asset('images/default/user.jpg')}}" class="img-responsive" alt="User Image"> @endif </td> <td>{{ $user['fname'] }} {{ $user['lname'] }}</td> <td>{{ $user['email'] }}</td> <td>{{ $user['role'] }}</td> <td> {{$user->mobile}} </td> <td>{{ $user->country['nicename'] }}</td> <td> <form action="{{ route('user.quick',$user->id) }}" method="POST"> {{ csrf_field() }} <button type="Submit" class="btn btn-xs {{ $user->status ==1 ? 'btn-success' : 'btn-danger' }}"> @if($user->status ==1) {{ __('adminstaticword.Active') }} @else {{ __('adminstaticword.Deactive') }} @endif </button> </form> </td> <td> <a class="btn btn-success btn-sm" href="{{ route('user.update',$user->id) }}"> <i class="glyphicon glyphicon-pencil"></i></a> </td> <td><form method="post" action="{{ route('user.delete',$user->id) }} "data-parsley-validate class="form-horizontal form-label-left"> {{ csrf_field() }} {{ method_field('DELETE') }} <button onclick="return confirm('Are you sure you want to delete?')" type="submit" class="btn btn-danger btn-sm"><i class="fa fa-fw fa-trash-o"></i></button> </form> </td> </tr> @endif @endforeach </tbody> </table> </div> </div> <!-- /.box-body --> </div> </div> <!-- /.col --> </div> <!-- /.row --> </section> @endsection
Save
cmd:
run