README.md
# Welcome to Laravel Generator Package
This package is used to generate models, controllers, views, routes, migrations, seeders, factories, requests, and more for Laravel.
[![Latest Version](https://img.shields.io/github/release/cslant/laravel-generator-advanced.svg?style=flat-square)](https://github.com/cslant/laravel-generator-advanced/releases)
[![Total Downloads](https://img.shields.io/packagist/dt/cslant/laravel-generator-advanced.svg?style=flat-square)](https://packagist.org/packages/cslant/laravel-generator-advanced)
![Test Status](https://img.shields.io/github/actions/workflow/status/cslant/laravel-generator-advanced/setup_test.yml?label=tests&branch=main)
[![StyleCI](https://styleci.io/repos/605697295/shield)](https://styleci.io/repos/605697295)
[![Quality Score](https://img.shields.io/scrutinizer/g/cslant/laravel-generator-advanced.svg?style=flat-square)](https://scrutinizer-ci.com/g/cslant/laravel-generator-advanced)
[![Maintainability](https://api.codeclimate.com/v1/badges/231c123bfa276fd1ac3c/maintainability)](https://codeclimate.com/github/cslant/laravel-generator-advanced/maintainability)
## Technology
- PHP ^8.1
- Laravel Framework 9.x, 10.x
- Composer
## Installation
You can install the package with [Composer](https://getcomposer.org/) using the following command:
```bash
composer require cslant/laravel-generator-advanced
```
## Publish the config file, views, and language files
If you want to change the default configuration, the views, or the language files, you can publish them with the following command:
```bash
php artisan vendor:publish --provider="CSlant\LaraGenAdv\Providers\LaravelGeneratorServiceProvider"
```
If you have run the above command, you will see the following files in your project:
- `config/laravel-generator-advanced.php`
- `resources/views/vendor/laravel-generator-advanced`
---
Also, you can publish only the config file with the following command:
```bash
php artisan vendor:publish --provider="CSlant\LaraGenAdv\Providers\LaravelGeneratorServiceProvider" --tag="config"
```
Similarly, you can publish only the views with the following command:
```bash
php artisan vendor:publish --provider="CSlant\LaraGenAdv\Providers\LaravelGeneratorServiceProvider" --tag="views"
```
## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.
<p align="center">
<a href="https://packagist.org/packages/cslant/laravel-generator-advanced">
<img src="https://img.shields.io/packagist/l/doctrine/orm.svg" data-origin="https://img.shields.io/packagist/l/doctrine/orm.svg" alt="license">
</a>
</p>