@extends('admin::layouts.master') @section('content-header')

{{{ $title or 'All Users' }}} ({{ $users->getTotal() }}) · {{ link_to_route('admin.users.create', 'Add New') }}

@stop @section('content') @if(isset($search)) @include('admin::users.search-form') @endif @foreach ($users as $user) @endforeach
No Name Username Email Created At Action
{{ $no }} {{ $user->name }} {{ $user->username }} {{ $user->email }} {{ $user->created_at }} Edit · @include('admin::partials.modal', ['data' => $user, 'name' => 'users'])
{{ pagination_links($users) }}
@stop