bondarde/lox
最新稳定版本:v3.13.1
Composer 安装命令:
composer require bondarde/lox
包简介
Collection of Laravel components and utilities
README 文档
README
Installation
composer require bondarde/lox
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
If needed, customize table names in config/permission.php, e.g.:
'table_names' => [
'roles' => 'acl_roles',
'permissions' => 'acl_permissions',
'model_has_permissions' => 'acl_model_has_permissions',
'model_has_roles' => 'acl_model_has_roles',
'role_has_permissions' => 'acl_role_has_permissions',
],
Run migrations:
php artisan migrate
If needed, add middleware aliases to the app/Http/Kernel.php file, in the $middlewareAliases array:
protected $middlewareAliases = [
…
'role' => \Spatie\Permission\Middlewares\RoleMiddleware::class,
'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class,
'role_or_permission' => \Spatie\Permission\Middlewares\RoleOrPermissionMiddleware::class,
…
];
Create "Super Admin" user or assign role to the user:
php artisan shield:super-admin --user=1
Create permissions required by LOX admin panel. Provide --super-admin to assign it to the user (ID or e-mail)
php artisan lox:update-acl --super-admin=1
After signing up, assign admin group to (your) user by ID or e-mail address:
php artisan acl:make-super-admin 1
or:
php artisan acl:make-super-admin mail@example.com
Publish config:
php artisan vendor:publish --provider="BondarDe\Lox\LoxServiceProvider" --tag=config
This command also publishes:
package.jsonpostcss.config.jsontailwind.config.jsvite.config.js
Styles
Add styles to your resources/scss/app.scss:
@use "sass:meta";
@tailwind base;
@tailwind components;
@tailwind utilities;
@include meta.load-css('../../vendor/bondarde/lox/resources/scss/base');
@include meta.load-css('../../vendor/bondarde/lox/resources/scss/tools');
@include meta.load-css('../../vendor/bondarde/lox/resources/scss/boolean');
Tailwind config:
php artisan vendor:publish --provider="BondarDe\Lox\LoxServiceProvider" --tag=tailwind
Burger menu as Tailwind plugin:
php artisan vendor:publish --provider="BondarDe\Lox\LoxServiceProvider" --tag=tailwind-burger-menu
Laravel Vite & Tailwind CSS
package.json:
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"laravel-vite-plugin": "^0.5.2",
"postcss": "^8.4.4",
"sass": "^1.30.0",
"sass-loader": "^12.6.0",
"tailwindcss": "^3.2.0",
"vite": "^3.0.4"
}
}
Build and Deployment
Build for different stages:
composer/bin/dep build stage=test
composer/bin/dep deploy stage=test
For local OPCache reset, a call to http://127.0.0.1/opcache-reset.php has to call PHP’s opcache_clear()
If not possible, add in deploy.php:
set('opcache_reset_mode', 'remote');
User deployer should be able to execute sudo without password prompt for chmod, chown and chgrp:
sudo visudo
deployer ALL=(ALL:ALL) NOPASSWD: /usr/bin/chmod *
deployer ALL=(ALL:ALL) NOPASSWD: /usr/bin/chown *
deployer ALL=(ALL:ALL) NOPASSWD: /usr/bin/chgrp *
Vite Builds
npm run vite
npm run vite build
Usage
Page structure:
<x-lox::page
title="Page Title"
h1="Headline"
>
<p>Your page content, beautifully staged.</p>
</x-lox::page>
For page component you may want to create HTML header, page header and footer:
php artisan make:component HtmlHeader
php artisan make:component PageHeader
php artisan make:component PageFooter
Forms
<x-form-row
for="input-name"
>
...
</x-form-row>
Buttons
TBD
FortifyServiceProvider
Publish:
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
Add in boot():
Fortify::registerView(config('lox.views.auth.register'));
Fortify::loginView(config('lox.views.auth.login'));
Fortify::confirmPasswordView(config('lox.views.auth.confirm-password'));
Fortify::requestPasswordResetLinkView(config('lox.views.auth.forgot-password'));
Fortify::resetPasswordView(config('lox.views.auth.reset-password'));
Fortify::twoFactorChallengeView(config('lox.views.auth.two-factor-challenge'));
Fortify::verifyEmailView(config('lox.views.auth.verify-email'));
In config/app.php add service provider:
\App\Providers\FortifyServiceProvider::class,
Database Session storage:
php artisan session:table
php artisan migrate
SSO
Add "sso" to features array in config/fortify.php.
In config/fortify-options.php, add SSO providers, e.g.:
return [
'sso' => [
'apple' => true,
'facebook' => true,
'twitter' => true,
],
];
For each provider, install Socialite Providers package:
composer require socialiteproviders/<provider>
Follow installation steps: https://socialiteproviders.com/
统计信息
- 总下载量: 1.62k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-02