@extends('Layouts.master') @section('content')
@include('Partials.Pages.index_top')
@foreach($data as $object) @endforeach
@lang('username') @lang('name_full') @lang('role') @lang('action')
{{$object->username}} {{$object->name}} {{$object->role->name}} @can(Request::segment(1).'_edit') @lang('edit') @endcan @can(Request::segment(1).'_restore') @lang('restore') @endcan @can(Request::segment(1).'_delete_force')
@endcan
@include('Partials.Pages.display')
@endsection @section('scripting') @endsection