@extends('layouts.app') @push('pageTitle') {{ __('labels.users') }} @endpush @push('css') @endpush @section('content')
@include('components.datatable.custom-search', [ 'tableId' => 'datatable-main', 'actionButton' => Auth::user()->can('create', \App\Models\User::class) ? [ 'text' => __('labels.new_user'), 'url' => route('users.create'), ] : null, ]) @include('components.common.flush-message')
@foreach ($listresults as $index => $item) @endforeach
@endsection @push('js') @endpush