Added: Roles & Permissions

This commit is contained in:
Fahim Anzam Dip 2021-07-18 02:32:58 +06:00
parent c5690bdc8c
commit 0d7d2c747e
56 changed files with 1117 additions and 90 deletions

View File

@ -2,10 +2,6 @@
@section('title', 'Edit Product Category') @section('title', 'Edit Product Category')
@section('third_party_stylesheets')
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.25/css/dataTables.bootstrap4.min.css">
@endsection
@section('breadcrumb') @section('breadcrumb')
<ol class="breadcrumb border-0 m-0"> <ol class="breadcrumb border-0 m-0">
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li> <li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>

View File

@ -2,13 +2,13 @@
<i class="bi bi-pencil"></i> <i class="bi bi-pencil"></i>
</a> </a>
<button id="delete" class="btn btn-danger btn-sm" onclick=" <button id="delete" class="btn btn-danger btn-sm" onclick="
e.preventDefault(); event.preventDefault();
if (confirm('Are you sure? It will delete the data permanently!')) { if (confirm('Are you sure? It will delete the data permanently!')) {
document.getElementById('destroy{{ $data->id }}').submit(); document.getElementById('destroy{{ $data->id }}').submit();
} }
"> ">
<i class="bi bi-trash"></i> <i class="bi bi-trash"></i>
<form id="destroy{{ $data->id }}" class="d-none" action="{{ route('product-categories.destroy', $data->id) }}"> <form id="destroy{{ $data->id }}" class="d-none" action="{{ route('product-categories.destroy', $data->id) }}" method="POST">
@csrf @csrf
@method('delete') @method('delete')
</form> </form>

View File

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Module Product</title>
{{-- Laravel Mix - CSS File --}}
{{-- <link rel="stylesheet" href="{{ mix('css/product.css') }}"> --}}
</head>
<body>
@yield('content')
{{-- Laravel Mix - JS File --}}
{{-- <script src="{{ mix('js/product.js') }}"></script> --}}
</body>
</html>

View File

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Module Upload</title>
{{-- Laravel Mix - CSS File --}}
{{-- <link rel="stylesheet" href="{{ mix('css/upload.css') }}"> --}}
</head>
<body>
@yield('content')
{{-- Laravel Mix - JS File --}}
{{-- <script src="{{ mix('js/upload.js') }}"></script> --}}
</body>
</html>

View File

View File

@ -0,0 +1,5 @@
<?php
return [
'name' => 'User'
];

View File

View File

View File

@ -0,0 +1,45 @@
<?php
namespace Modules\User\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
use Spatie\Permission\Models\Permission;
use Spatie\Permission\Models\Role;
class PermissionsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$permissions = [
'access_roles_permissions',
'create_roles_permissions',
'edit_roles_permissions',
'delete_roles_permissions',
'access_products',
'create_products',
'show_products',
'edit_products',
'delete_products',
'access_product_categories',
];
foreach ($permissions as $permission) {
Permission::create([
'name' => $permission
]);
}
//Assign all the permissions to Admin role
$role = Role::create([
'name' => 'Admin'
]);
$role->givePermissionTo($permissions);
}
}

View File

@ -0,0 +1,19 @@
<?php
namespace Modules\User\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class UserDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(PermissionsTableSeeder::class);
}
}

View File

View File

View File

View File

@ -0,0 +1,96 @@
<?php
namespace Modules\User\Http\Controllers;
use App\DataTables\RolesDataTable;
use Illuminate\Contracts\Support\Renderable;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Spatie\Permission\Models\Role;
class RolesController extends Controller
{
/**
* Display a listing of the resource.
* @return Renderable
*/
public function index(RolesDataTable $dataTable) {
return $dataTable->render('user::roles.index');
}
/**
* Show the form for creating a new resource.
* @return Renderable
*/
public function create() {
return view('user::roles.create');
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Renderable
*/
public function store(Request $request) {
$request->validate([
'name' => 'required|string|max:255',
'permissions' => 'required|array'
]);
$role = Role::create([
'name' => $request->name
]);
$role->givePermissionTo($request->permissions);
toast('Role Created With Selected Permissions!', 'success');
return redirect()->route('roles.index');
}
/**
* Show the form for editing the specified resource.
* @param int $id
* @return Renderable
*/
public function edit(Role $role) {
return view('user::roles.edit', compact('role'));
}
/**
* Update the specified resource in storage.
* @param Request $request
* @param int $id
* @return Renderable
*/
public function update(Request $request, Role $role) {
$request->validate([
'name' => 'required|string|max:255',
'permissions' => 'required|array'
]);
$role->update([
'name' => $request->name
]);
$role->syncPermissions($request->permissions);
toast('Role Updated With Selected Permissions!', 'success');
return redirect()->route('roles.index');
}
/**
* Remove the specified resource from storage.
* @param int $id
* @return Renderable
*/
public function destroy(Role $role) {
$role->delete();
toast('Role Deleted!', 'success');
return redirect()->route('roles.index');
}
}

View File

@ -0,0 +1,74 @@
<?php
namespace Modules\User\Http\Controllers;
use App\Models\User;
use Illuminate\Contracts\Support\Renderable;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
class UsersController extends Controller
{
/**
* Display a listing of the resource.
* @return Renderable
*/
public function index() {
return view('user::users.index');
}
/**
* Show the form for creating a new resource.
* @return Renderable
*/
public function create() {
return view('user::users.create');
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Renderable
*/
public function store(Request $request) {
//
}
/**
* Show the specified resource.
* @param int $id
* @return Renderable
*/
public function show(User $user) {
return view('user::users.show', compact('user'));
}
/**
* Show the form for editing the specified resource.
* @param int $id
* @return Renderable
*/
public function edit(User $user) {
return view('user::users.edit', compact('user'));
}
/**
* Update the specified resource in storage.
* @param Request $request
* @param int $id
* @return Renderable
*/
public function update(Request $request, User $user) {
//
}
/**
* Remove the specified resource from storage.
* @param int $id
* @return Renderable
*/
public function destroy(User $user) {
//
}
}

View File

View File

View File

View File

@ -0,0 +1,69 @@
<?php
namespace Modules\User\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* The module namespace to assume when generating URLs to actions.
*
* @var string
*/
protected $moduleNamespace = 'Modules\User\Http\Controllers';
/**
* Called before routes are registered.
*
* Register any model bindings or pattern based filters.
*
* @return void
*/
public function boot()
{
parent::boot();
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->moduleNamespace)
->group(module_path('User', '/Routes/web.php'));
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->moduleNamespace)
->group(module_path('User', '/Routes/api.php'));
}
}

View File

@ -0,0 +1,112 @@
<?php
namespace Modules\User\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Factory;
class UserServiceProvider extends ServiceProvider
{
/**
* @var string $moduleName
*/
protected $moduleName = 'User';
/**
* @var string $moduleNameLower
*/
protected $moduleNameLower = 'user';
/**
* Boot the application events.
*
* @return void
*/
public function boot()
{
$this->registerTranslations();
$this->registerConfig();
$this->registerViews();
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->app->register(RouteServiceProvider::class);
}
/**
* Register config.
*
* @return void
*/
protected function registerConfig()
{
$this->publishes([
module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower . '.php'),
], 'config');
$this->mergeConfigFrom(
module_path($this->moduleName, 'Config/config.php'), $this->moduleNameLower
);
}
/**
* Register views.
*
* @return void
*/
public function registerViews()
{
$viewPath = resource_path('views/modules/' . $this->moduleNameLower);
$sourcePath = module_path($this->moduleName, 'Resources/views');
$this->publishes([
$sourcePath => $viewPath
], ['views', $this->moduleNameLower . '-module-views']);
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
}
/**
* Register translations.
*
* @return void
*/
public function registerTranslations()
{
$langPath = resource_path('lang/modules/' . $this->moduleNameLower);
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
} else {
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
}
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
private function getPublishableViewPaths(): array
{
$paths = [];
foreach (\Config::get('view.paths') as $path) {
if (is_dir($path . '/modules/' . $this->moduleNameLower)) {
$paths[] = $path . '/modules/' . $this->moduleNameLower;
}
}
return $paths;
}
}

View File

View File

View File

View File

View File

View File

@ -0,0 +1,104 @@
@extends('layouts.app')
@section('title', 'Create Role')
@section('breadcrumb')
<ol class="breadcrumb border-0 m-0">
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
<li class="breadcrumb-item"><a href="{{ route('roles.index') }}">Roles</a></li>
<li class="breadcrumb-item active">Create</li>
</ol>
@endsection
@section('content')
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<form action="{{ route('roles.store') }}" method="POST">
@csrf
<div class="form-group">
<button type="submit" class="btn btn-primary">Create Role <i class="bi bi-check"></i>
</button>
</div>
<div class="card">
<div class="card-body">
<div class="form-group">
<label for="name">Role Name <span class="text-danger">*</span></label>
<input class="form-control" type="text" name="name" required>
</div>
<hr>
<div class="form-group">
<label for="permissions">Permissions <span class="text-danger">*</span></label>
</div>
<div class="row">
<div class="col-lg-4">
<div class="card">
<div class="card-header">
Products
</div>
<div class="card-body">
<div class="row">
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="access_product" name="permissions[]"
value="access_product">
<label class="custom-control-label" for="access_product">Access</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="show_product" name="permissions[]"
value="show_product">
<label class="custom-control-label" for="show_product">View</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="create_product" name="permissions[]"
value="create_product">
<label class="custom-control-label" for="create_product">Create</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="edit_product" name="permissions[]"
value="edit_product">
<label class="custom-control-label" for="edit_product">Edit</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="delete_product" name="permissions[]"
value="delete_product">
<label class="custom-control-label" for="delete_product">Delete</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="product_category_access" name="permissions[]"
value="product_category_access">
<label class="custom-control-label" for="product_category_access">Category</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
@endsection

View File

@ -0,0 +1,160 @@
@extends('layouts.app')
@section('title', 'Edit Role')
@section('breadcrumb')
<ol class="breadcrumb border-0 m-0">
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
<li class="breadcrumb-item"><a href="{{ route('roles.index') }}">Roles</a></li>
<li class="breadcrumb-item active">Edit</li>
</ol>
@endsection
@push('page_css')
<style>
.custom-control-label {
cursor: pointer;
}
</style>
@endpush
@section('content')
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<form action="{{ route('roles.update', $role->id) }}" method="POST">
@csrf
@method('patch')
<div class="form-group">
<button type="submit" class="btn btn-primary">Update Role <i class="bi bi-check"></i>
</button>
</div>
<div class="card">
<div class="card-body">
<div class="form-group">
<label for="name">Role Name <span class="text-danger">*</span></label>
<input class="form-control" type="text" name="name" required value="{{ $role->name }}">
</div>
<hr>
<div class="form-group">
<label for="permissions">Permissions <span class="text-danger">*</span></label>
</div>
<div class="row">
<!-- Roles & Permissions Section Permission -->
<div class="col-lg-4">
<div class="card h-100">
<div class="card-header">
Roles & Permissions
</div>
<div class="card-body">
<div class="row">
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="access_roles_permissions" name="permissions[]"
value="access_roles_permissions" {{ $role->hasPermissionTo('access_roles_permissions') ? 'checked' : '' }}>
<label class="custom-control-label" for="access_roles_permissions">Access</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="create_roles_permissions" name="permissions[]"
value="create_roles_permissions" {{ $role->hasPermissionTo('create_roles_permissions') ? 'checked' : '' }}>
<label class="custom-control-label" for="create_roles_permissions">Create</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="edit_roles_permissions" name="permissions[]"
value="edit_roles_permissions" {{ $role->hasPermissionTo('edit_roles_permissions') ? 'checked' : '' }}>
<label class="custom-control-label" for="edit_roles_permissions">Edit</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="delete_roles_permissions" name="permissions[]"
value="delete_roles_permissions" {{ $role->hasPermissionTo('delete_roles_permissions') ? 'checked' : '' }}>
<label class="custom-control-label" for="delete_roles_permissions">Delete</label>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Products Section Permission -->
<div class="col-lg-4">
<div class="card h-100">
<div class="card-header">
Products
</div>
<div class="card-body">
<div class="row">
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="access_products" name="permissions[]"
value="access_products" {{ $role->hasPermissionTo('access_products') ? 'checked' : '' }}>
<label class="custom-control-label" for="access_products">Access</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="show_products" name="permissions[]"
value="show_products" {{ $role->hasPermissionTo('show_products') ? 'checked' : '' }}>
<label class="custom-control-label" for="show_products">View</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="create_products" name="permissions[]"
value="create_products" {{ $role->hasPermissionTo('create_products') ? 'checked' : '' }}>
<label class="custom-control-label" for="create_products">Create</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="edit_products" name="permissions[]"
value="edit_products" {{ $role->hasPermissionTo('edit_products') ? 'checked' : '' }}>
<label class="custom-control-label" for="edit_products">Edit</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="delete_products" name="permissions[]"
value="delete_products" {{ $role->hasPermissionTo('delete_products') ? 'checked' : '' }}>
<label class="custom-control-label" for="delete_products">Delete</label>
</div>
</div>
<div class="col-6">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input"
id="access_product_categories" name="permissions[]"
value="access_product_categories" {{ $role->hasPermissionTo('access_product_categories') ? 'checked' : '' }}>
<label class="custom-control-label" for="access_product_categories">Category</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
@endsection

View File

@ -0,0 +1,41 @@
@extends('layouts.app')
@section('title', 'Roles & Permissions')
@section('third_party_stylesheets')
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.25/css/dataTables.bootstrap4.min.css">
@endsection
@section('breadcrumb')
<ol class="breadcrumb border-0 m-0">
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
<li class="breadcrumb-item active">Roles</li>
</ol>
@endsection
@section('content')
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<!-- Button trigger modal -->
<a href="{{ route('roles.create') }}" class="btn btn-primary">
Add Role <i class="bi bi-plus"></i>
</a>
<hr>
<div class="table-responsive">
{!! $dataTable->table() !!}
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@push('page_scripts')
{!! $dataTable->scripts() !!}
@endpush

View File

@ -0,0 +1,15 @@
<a href="{{ route('roles.edit', $data->id) }}" class="btn btn-info btn-sm">
<i class="bi bi-pencil"></i>
</a>
<button id="delete" class="btn btn-danger btn-sm" onclick="
event.preventDefault();
if (confirm('Are you sure? It will delete the data permanently!')) {
document.getElementById('destroy{{ $data->id }}').submit();
}
">
<i class="bi bi-trash"></i>
<form id="destroy{{ $data->id }}" class="d-none" action="{{ route('roles.destroy', $data->id) }}" method="POST">
@csrf
@method('delete')
</form>
</button>

View File

@ -0,0 +1,3 @@
@foreach($permissions as $permission)
<span class="badge badge-primary">{{ $permission }}</span>
@endforeach

View File

View File

@ -0,0 +1,18 @@
<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:api')->get('/setting', function (Request $request) {
return $request->user();
});

View File

@ -0,0 +1,16 @@
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
*/
Route::group(['middleware' => 'auth'], function () {
//Users
Route::resource('users', 'UsersController');
//Roles
Route::resource('roles', 'RolesController')->except('show');
});

View File

View File

View File

@ -0,0 +1,23 @@
{
"name": "nwidart/user",
"description": "",
"authors": [
{
"name": "Nicolas Widart",
"email": "n.widart@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [],
"aliases": {
}
}
},
"autoload": {
"psr-4": {
"Modules\\User\\": ""
}
}
}

13
Modules/User/module.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "User",
"alias": "user",
"description": "",
"keywords": [],
"priority": 0,
"providers": [
"Modules\\User\\Providers\\UserServiceProvider"
],
"aliases": {},
"files": [],
"requires": []
}

17
Modules/User/package.json Normal file
View File

@ -0,0 +1,17 @@
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"cross-env": "^7.0",
"laravel-mix": "^5.0.1",
"laravel-mix-merge-manifest": "^0.1.2"
}
}

14
Modules/User/webpack.mix.js vendored Normal file
View File

@ -0,0 +1,14 @@
const dotenvExpand = require('dotenv-expand');
dotenvExpand(require('dotenv').config({ path: '../../.env'/*, debug: true*/}));
const mix = require('laravel-mix');
require('laravel-mix-merge-manifest');
mix.setPublicPath('../../public').mergeManifest();
mix.js(__dirname + '/Resources/assets/js/app.js', 'js/setting.js')
.sass( __dirname + '/Resources/assets/sass/app.scss', 'css/setting.css');
if (mix.inProduction()) {
mix.version();
}

View File

@ -1 +1 @@
### Project On Development.... ### Work In Progress.....

View File

@ -48,13 +48,19 @@ class ProductCategoriesDataTable extends DataTable
->setTableId('product_categories-table') ->setTableId('product_categories-table')
->columns($this->getColumns()) ->columns($this->getColumns())
->minifiedAjax() ->minifiedAjax()
->dom('Bfltrip') ->dom("<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>")
->orderBy(0, 'asc') ->orderBy(0, 'asc')
->buttons( ->buttons(
Button::make('excel'), Button::make('excel')
Button::make('print'), ->text('<i class="bi bi-file-earmark-excel-fill"></i> Excel'),
Button::make('reset'), Button::make('print')
->text('<i class="bi bi-printer-fill"></i> Print'),
Button::make('reset')
->text('<i class="bi bi-x-circle"></i> Reset'),
Button::make('reload') Button::make('reload')
->text('<i class="bi bi-arrow-repeat"></i> Reload')
); );
} }

View File

@ -54,13 +54,19 @@ class ProductDataTable extends DataTable
->setTableId('product-table') ->setTableId('product-table')
->columns($this->getColumns()) ->columns($this->getColumns())
->minifiedAjax() ->minifiedAjax()
->dom('Bflrtip') ->dom("<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>")
->orderBy(0) ->orderBy(0)
->buttons( ->buttons(
Button::make('excel'), Button::make('excel')
Button::make('print'), ->text('<i class="bi bi-file-earmark-excel-fill"></i> Excel'),
Button::make('reset'), Button::make('print')
->text('<i class="bi bi-printer-fill"></i> Print'),
Button::make('reset')
->text('<i class="bi bi-x-circle"></i> Reset'),
Button::make('reload') Button::make('reload')
->text('<i class="bi bi-arrow-repeat"></i> Reload')
); );
} }

View File

@ -0,0 +1,113 @@
<?php
namespace App\DataTables;
use Spatie\Permission\Models\Role;
use Yajra\DataTables\Html\Button;
use Yajra\DataTables\Html\Column;
use Yajra\DataTables\Html\Editor\Editor;
use Yajra\DataTables\Html\Editor\Fields;
use Yajra\DataTables\Services\DataTable;
class RolesDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables()
->eloquent($query)
->addColumn('action', function ($data) {
return view('user::roles.partials.actions', compact('data'));
})
->addColumn('permissions', function ($data) {
return view('user::roles.partials.permissions', [
'permissions' => $data->getPermissionNames()
]);
});
}
/**
* Get query source of dataTable.
*
* @param \Spatie\Permission\Models\Role $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Role $model)
{
return $model->newQuery()->with(['permissions' => function($query) {
$query->select('name')->get();
}]);
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->setTableId('roles-table')
->columns($this->getColumns())
->minifiedAjax()
->dom("<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>")
->orderBy(1)
->buttons(
Button::make('excel')
->text('<i class="bi bi-file-earmark-excel-fill"></i> Excel'),
Button::make('print')
->text('<i class="bi bi-printer-fill"></i> Print'),
Button::make('reset')
->text('<i class="bi bi-x-circle"></i> Reset'),
Button::make('reload')
->text('<i class="bi bi-arrow-repeat"></i> Reload')
);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
Column::make('id')
->addClass('text-center')
->addClass('align-middle'),
Column::make('name')
->addClass('text-center')
->addClass('align-middle'),
Column::computed('permissions')
->addClass('text-center')
->addClass('align-middle')
->width('700px'),
Column::computed('action')
->exportable(false)
->printable(false)
->addClass('text-center')
->addClass('align-middle')
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'Roles_' . date('YmdHis');
}
}

View File

@ -0,0 +1,94 @@
<?php
namespace App\DataTables;
use App\Models\User;
use Yajra\DataTables\Html\Button;
use Yajra\DataTables\Html\Column;
use Yajra\DataTables\Html\Editor\Editor;
use Yajra\DataTables\Html\Editor\Fields;
use Yajra\DataTables\Services\DataTable;
class UsersDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables()
->eloquent($query)
->addColumn('action', function ($data) {
return view('user::users.partials.actions', compact('data'));
});
}
/**
* Get query source of dataTable.
*
* @param \App\Models\User $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(User $model)
{
return $model->newQuery();
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->setTableId('users-table')
->columns($this->getColumns())
->minifiedAjax()
->dom("<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>")
->orderBy(1)
->buttons(
Button::make('excel')
->text('<i class="bi bi-file-earmark-excel-fill"></i> Excel'),
Button::make('print')
->text('<i class="bi bi-printer-fill"></i> Print'),
Button::make('reset')
->text('<i class="bi bi-x-circle"></i> Reset'),
Button::make('reload')
->text('<i class="bi bi-arrow-repeat"></i> Reload')
);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
Column::make('id'),
Column::make('created_at'),
Column::make('updated_at'),
Column::computed('action')
->exportable(false)
->printable(false)
->addClass('text-center'),
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'Users_' . date('YmdHis');
}
}

View File

@ -1,4 +1,9 @@
<?php <?php
$dom = "
B<'row'<'col-md-6'l><'col-md-6'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7'p>>
";
return [ return [
/* /*
@ -57,7 +62,9 @@ return [
* Default html builder parameters. * Default html builder parameters.
*/ */
'parameters' => [ 'parameters' => [
'dom' => 'Bfltrip', 'dom' => "<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
'tr' .
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>",
'order' => [[0, 'desc']], 'order' => [[0, 'desc']],
'buttons' => [ 'buttons' => [
'excel', 'excel',
@ -84,6 +91,6 @@ return [
/* /*
* Default DOM to generate when not set. * Default DOM to generate when not set.
*/ */
'dom' => 'Bfrtip', 'dom' => 'Bfrtip',
], ],
]; ];

View File

@ -1,33 +0,0 @@
<?php
return [
/*
* DataTables JavaScript global namespace.
*/
'namespace' => 'LaravelDataTables',
/*
* Default table attributes when generating the table.
*/
'table' => [
'class' => 'table table-bordered',
'id' => 'dataTableBuilder',
],
/*
* Default condition to determine if a parameter is a callback or not.
* Callbacks needs to start by those terms or they will be casted to string.
*/
'callback' => ['$', '$.', 'function'],
/*
* Html builder script template.
*/
'script' => 'datatables::script',
/*
* Html builder script template for DataTables Editor integration.
*/
'editor' => 'datatables::editor',
];

View File

@ -1,4 +1,5 @@
{ {
"Product": true, "Product": true,
"Upload": true "Upload": true,
"User": true
} }

4
public/css/app.css vendored
View File

@ -18779,3 +18779,7 @@ h3 {
border: 0; border: 0;
box-shadow: 0 1px 1px 0 rgba(60, 75, 100, 0.14), 0 2px 1px -1px rgba(60, 75, 100, 0.12), 0 1px 3px 0 rgba(60, 75, 100, 0.2); box-shadow: 0 1px 1px 0 rgba(60, 75, 100, 0.14), 0 2px 1px -1px rgba(60, 75, 100, 0.12), 0 1px 3px 0 rgba(60, 75, 100, 0.2);
} }
table {
width: 100% !important;
}

View File

@ -6,3 +6,7 @@
border: 0; border: 0;
box-shadow: 0 1px 1px 0 rgb(60 75 100 / 14%), 0 2px 1px -1px rgb(60 75 100 / 12%), 0 1px 3px 0 rgb(60 75 100 / 20%); box-shadow: 0 1px 1px 0 rgb(60 75 100 / 14%), 0 2px 1px -1px rgb(60 75 100 / 12%), 0 1px 3px 0 rgb(60 75 100 / 20%);
} }
table {
width: 100% !important;
}

View File

@ -26,3 +26,26 @@
</li> </li>
</ul> </ul>
</li> </li>
<li class="c-sidebar-nav-item c-sidebar-nav-dropdown {{ request()->routeIs('roles*') ? 'c-show' : '' }}">
<a class="c-sidebar-nav-link c-sidebar-nav-dropdown-toggle" href="#">
<i class="c-sidebar-nav-icon bi bi-people" style="line-height: 1;"></i> User Management
</a>
<ul class="c-sidebar-nav-dropdown-items">
<li class="c-sidebar-nav-item">
<a class="c-sidebar-nav-link {{ request()->routeIs('users.create') ? 'c-active' : '' }}" href="{{ route('users.create') }}">
<i class="c-sidebar-nav-icon bi bi-person-plus" style="line-height: 1;"></i> Create User
</a>
</li>
<li class="c-sidebar-nav-item">
<a class="c-sidebar-nav-link {{ request()->routeIs('users*') ? 'c-active' : '' }}" href="{{ route('users.index') }}">
<i class="c-sidebar-nav-icon bi bi-person-lines-fill" style="line-height: 1;"></i> All Users
</a>
</li>
<li class="c-sidebar-nav-item">
<a class="c-sidebar-nav-link {{ request()->routeIs('roles*') ? 'c-active' : '' }}" href="{{ route('roles.index') }}">
<i class="c-sidebar-nav-icon bi bi-key" style="line-height: 1;"></i> Roles & Permissions
</a>
</li>
</ul>
</li>