@extends('layouts.tenant.master') @section('title', 'User Menu') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

User Management

@endsection @section('breadcrumb-items') @endsection @section('content')
@foreach ($users as $user) @endforeach
# Full Name Email Role Actions
{{ ++$i }} {{ $user->name }} {{ $user->email }} @if (!empty($user->getRoleNames())) @foreach ($user->getRoleNames() as $v) @endforeach @endif Show Edit
@csrf @method('DELETE')
# Full Name Email Role Actions
{{-- {!! $data->links('pagination::bootstrap-5') !!} --}}
@endsection @section('script') @endsection