@extends('admin.layout.master') @section('content')
@include('admin.layout.notification')

All user

ADD

@if(count($userList) > 0) @foreach($userList as $user) @endforeach @endif
Username Email Phone Address Status Action
{{ $user->username }} {{ $user->email }} @if($user->phone == Null) No data @else {{ $user->phone }} @endif @if($user->address == Null) No data @else @endif @if($user->status == 1) Administrator @else User @endif Edit Delete
@stop()