larakidu/kidu-package

There is no license information available for the latest version (v1.0.3) of this package.

A Laravel package to streamline the creation of controllers, models, and repositories.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/larakidu/kidu-package

v1.0.3 2024-12-21 17:16 UTC

This package is not auto-updated.

Last update: 2025-11-06 16:29:35 UTC


README

A Laravel package to streamline the creation of controllers, models, and repositories using customizable stubs.

Features

• Generate controllers, models, and repositories with artisan commands.

• Includes customizable stubs for controller, model, and repository templates.

• Simplifies repetitive tasks in Laravel development.

Installation

You can install the package via Composer:

composer require larakidu/kidu-package

Configuration
Publish the stubs to your stubs/ directory:

php artisan vendor:publish --tag=stubs

This will copy the following stub files to your stubs/ directory:

•  controllerkidu.stub

•  modelkidu.stub

•  repokidu.stub

Commands
After installation, the following artisan commands will be available:

1. 
Make Kidu Controller
Generate a controller with a specific naming convention.

php artisan make:kidu:controller {name}

1. 
Make Kidu Model
Generate a model with a specific naming convention.

php artisan make:kidu:model {name}

1. 
Make Kidu Repository
Generate a repository with a specific naming convention.

php artisan make:kidu:repo {name}