@extends('core::layouts.app') @section('title', __('Users')) @section('content')

@lang('Users')

@lang('Create')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('E-mail') @lang('Role') @lang('Action')
{{ $item->name }} {{ $item->email }} {{ $item->role }}
@csrf @method('DELETE')
@endif {{ $data->appends( Request::all() )->links() }} @if($data->count() == 0)
@lang('No users found')
@endif
@stop