Download the PHP package jjarroyo/laravel-kit without Composer
On this page you can find all versions of the php package jjarroyo/laravel-kit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jjarroyo/laravel-kit
More information about jjarroyo/laravel-kit
Files in jjarroyo/laravel-kit
Package laravel-kit
Short Description Un kit de herramientas para agilizar el desarrollo en Laravel.
License MIT
Informations about the package laravel-kit
Laravel Kit
Laravel Kit is a powerful set of Artisan commands to enhance your Laravel development workflow, automate repetitive tasks, and enforce best practices.
๐งญ Table of Contents
- Installation
- Available Commands
- 1.
kit:make-pro-crud - 2.
kit:init - 3.
kit:translate-view - 4.
kit:make-crud
- 1.
- Usage Example
- Contributing
- License
๐ฆ Installation
Install via Composer:
๐ Available Commands
1. kit:make-pro-crud
Professional Livewire-based CRUD generator. Analyzes existing migration files to create smart components.
๐น Arguments
| Argument | Description |
|---|---|
model |
Resource name in Plural PascalCase (e.g., Products, BlogPosts) |
๐ธ Options
| Option | Description |
|---|---|
--m, --model |
Generates the model and migration if not present |
--soft-deletes |
Adds Soft Delete support |
--prefix= |
Adds a route prefix (e.g., /admin/products) |
๐ This command generates:
- Eloquent model with
fillable,casts, and inferred relationships - Livewire components:
List,Create, andEdit - Blade views with a modern UI (dark mode, cards, modals)
- Language files (
lang/enandlang/es) - Protected routes using
authmiddleware
2. kit:init
Bootstraps a Laravel project with a professional package stack.
๐ง Includes packages:
spatie/laravel-permissionlaravel-lang/langlaravel/telescopespatie/laravel-activitylogspatie/laravel-medialibraryspatie/laravel-backup
The command is interactive and asks for confirmation before installing each package.
3. kit:translate-view
Refactors Blade views by extracting hardcoded strings into language files.
๐น Arguments
| Argument | Description |
|---|---|
path |
View path or directory (dot notation) |
๐ธ Options
| Option | Description |
|---|---|
--lang= |
Target language code (default: es) |
--group= |
Custom language file group name |
๐งช Examples
4. kit:make-crud
Lightweight CRUD generator for quick scaffolding.
โ Generates:
- Empty Livewire components:
List,Create,Edit - Basic Blade views
๐งช Usage Example
๐ค Contributing
Contributions are welcome! Feel free to submit a pull request with improvements or new features.
๐ License
Laravel Kit is open-source software licensed under the MIT license.