@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))
{{ Session::get('submit-status') }}
@endif

User Listing

@foreach ($all_users AS $user) @endforeach
Image Name Email Address Username Country City Status Action
@if($user['image'] && file_exists(public_path() ."/upload/profile_image/resize/".$user['image'])) {{$user['first_name']}} {{$user['last_name']}} @else @endif {{$user['first_name']}} {{$user['last_name']}} {{$user['email']}} {{$user['user_name']}} {{$user['countries']['name']}} {{$user['city']}} @if($user['status'] == '1') Active @else Inactive @endif @if($user['status'] == '1')@else@endif {{-- @if($user['role_code'] == 'SITEUSR')@else@endif --}}
@endsection