PHP code example of lazyou / laravel-quick
1. Go to this page and download the library: Download lazyou/laravel-quick library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lazyou / laravel-quick example snippets
$adminPath = config('quick.admin_path', 'admin');
Route::middleware(['web', 'quick.auth', 'quick.log'])
->prefix("/$adminPath")
->group(base_path('routes/quick_admin.php'));
Route::get('/example', [ExampleController::class, 'index'])->name('admin.example.index');
shell
composer vendor:publish --tag=quick [--force]
php artisan queue:table
php artisan quick:install