@extends('core::layouts.app')
@section('title', __('Users'))
@section('content')
@lang('Users')
@lang('Create')
@if($data->count() > 0)
| @lang('Name') |
@lang('E-mail') |
@lang('Role') |
@lang('Action') |
@foreach($data as $item)
|
{{ $item->name }}
|
{{ $item->email }}
|
{{ $item->role }}
|
|
@endforeach
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)
@lang('No users found')
@endif
@stop