utomo / codage
Simple Reusable for Laravel
Installs: 36
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.2
- laravel/framework: ^10.0
This package is not auto-updated.
Last update: 2025-07-29 20:33:58 UTC
README
Codeton Generator
Step
0. Install fresh laravel 10
composer create-project laravel/laravel:^10.0 example-app
1. Add Package laravel ui
composer require laravel/ui
2. Install Bootstrap Auth Scaffolding
php artisan ui bootstrap --auth
3. Install & Compile Package
npm install && npm run build
6. Update session drive to database on .env
SESSION_DRIVER=database
8. Set queue connection to database on .env
QUEUE_CONNECTION=database
Install Codage
1. Add Package utomo/codage
composer require utomo/codage
2. Publish
php artisan vendor:publish --tag=utomo-codage
3. Force to overwrite to new Version
php artisan vendor:publish --tag=utomo-codage --force
4. Migrate Database
php artisan migrate
5. Add command to app>Console>Kernel
protected $commands = [
Commands\ProtonGenerate::class,
];
6. Use Bootstrap Pagination on app>Providers>AppServiceProvider
use Illuminate\Pagination\Paginator;
public function boot(): void
{
//
Paginator::useBootstrap();
}
7. Include default route to routes>web.php
require __DIR__.'/default.php';
8. Run Laravel
php artisan serve
9. How to Generate Code
For generate codage skeleton, please refer to Codefio