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

User List

@endsection @section('breadcrumb-items') @endsection @section('content')
@include('partial.message')
Create User Restore User   Refresh
Export Import
@foreach ($users as $key => $user) @endforeach
# Type Username Full Name Email Company Name Status Created On Actions
{{ ++$key }} @if (!empty($user->getRoleNames())) @forelse ($user->getRoleNames() as $v) @empty @endforelse @else @endif {{ $user->username ?? 'N/A' }} {{ $user->name ?? 'N/A' }} {{ $user->company_name ?? 'N/A' }} {{ $user->created_at->format('d-m-Y') ?? 'N/A' }} Show | Edit | Delete
# Type Username Full Name Email Company Name Status Created On Actions
{{ $users->links('pagination::bootstrap-5') }}
{{-- --}}
@endsection @section('script') {{-- sweet alert start --}} @if (session('success')) @elseif(session('error')) @endif {{-- sweet alert end --}} @endsection