@extends('layouts.admin_template') @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach

User Lists

@foreach($userlists as $user) @endforeach
Name Username Email Phone Country Requested Date
{{ $user->name }} {{ $user->username }} {{ $user->email }} {{ $user->phone }} {{ $user->country }} {{ date('Y-m-d',strtotime($user->created_at)) }}
@endsection