@extends('layouts.app') @section('title', 'User Management') @section('styles') @endsection @section('content') @include('pages.fir-conversions.components.header-title', [ 'titleOne' => 'User Management', 'titleTwo' => 'Users List', 'menus' => [['name' => 'Add User', 'route' => route('user-management.create')]], ])
@foreach ($users as $key => $user) @endforeach
S.NO. Name Email UserName Role Status Action
{{ $key + 1 }} {{ $user->name }} {{ $user->email }} {{ $user->username }} @foreach ($user->roles as $role) {{ ucwords(str_replace('-', ' ', $role->name)) }} @endforeach {{ $user->status }} Edit {{-- Delete --}}
@endsection @section('scripts') @endsection