You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
urlhub/resources/views/backend/user/index.blade.php

16 lines
308 B

@extends('layouts.backend')
@section('title', __('All Users'))
@section('content')
<main>
<div class="common-card-style p-4">
<div class="text-2xl text-uh-1 mb-8">
<span>{{__('All Users')}}</span>
</div>
@livewire('table.user-table')
</div>
</main>
@endsection