Download the PHP package bondarde/laravel-toolbox without Composer
On this page you can find all versions of the php package bondarde/laravel-toolbox. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bondarde/laravel-toolbox
More information about bondarde/laravel-toolbox
Files in bondarde/laravel-toolbox
Package laravel-toolbox
Short Description Collection of Laravel components and utilities
License MIT
Informations about the package laravel-toolbox
LOX
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 [email protected]
Publish config:
php artisan vendor:publish --provider="BondarDe\Lox\LoxServiceProvider" --tag=config
This command also publishes:
package.json
postcss.config.json
tailwind.config.js
vite.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/
All versions of laravel-toolbox with dependencies
ext-json Version *
bezhansalleh/filament-shield Version ^3.2
bondarde/filament-local-avatar Version ^1.0
bondarde/filament-route-list Version ^1.0
bondarde/php-utils Version ^0.5.0
calebporzio/sushi Version ^2.5
deployer/deployer Version ^7.0
diglactic/laravel-breadcrumbs Version ^10.0
filament/filament Version ^3.2
firebase/php-jwt Version ^6.3
jenssegers/agent Version ^2.6
laravel/fortify Version ^1.10
laravel/framework Version ^11|^12
laravel/scout Version ^10.2
laravel/socialite Version ^5.5
livewire/livewire Version ^3.0
openai-php/laravel Version ^0.11
saade/filament-laravel-log Version ^3.2
spatie/laravel-permission Version ^6.0
spatie/laravel-translatable Version ^6.5
stechstudio/filament-impersonate Version ^3.12
teamtnt/laravel-scout-tntsearch-driver Version ^15.0
tinymce/tinymce Version ^7.0
tweeb/tinymce-i18n Version ^2.0
filament/spatie-laravel-translatable-plugin Version ^3.2
sentry/sentry-laravel Version ^4.12