@extends('layouts.merchant') @section('ext_css') @endsection @section('content') @if(session('success'))
Success ! {!! Session::get('success') !!}
@elseif(session('failure'))
Failed ! {{ Session::get('failure') }}
@endif

Users Management

@if($can_add) ADD NEW @else @endif EXPORT

@forelse($users as $user) @empty @endforelse
S.N Type Full Name Username Email Phone Status Operation
{{ $loop->iteration }} {{ strtoupper($user->type) }} {{ $user->full_name }} {{ $user->username }} {{ $user->email }} {{ $user->contact }} @if($user->status) Active @if($user->id !== auth()->guard('merchants')->user()->id) @if(auth()->guard('merchants')->user()->type != 'user' || $user->type == 'user') Change @endif @endif @else In-Active @if($user->id !== auth()->guard('merchants')->user()->id) @if(auth()->guard('merchants')->user()->type != 'user' || $user->type == 'user') Change @endif @endif @endif @if(auth()->guard('merchants')->user()) @if($user->id !== auth()->guard('merchants')->user()->id) @if(auth()->guard('merchants')->user()->type != 'user' || $user->type == 'user') @endif @endif @endif
No data available in the table ...
@include('pagination', ['paginator' => $users])
@stop @section('ext_js') @endsection