Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cslant/laravel-generator-advanced
https://github.com/cslant/laravel-generator-advanced
generator laravel laravel-generator laravel-package lbiltech php
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cslant/laravel-generator-advanced
- Owner: cslant
- License: mit
- Archived: true
- Created: 2023-02-23T17:55:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-10T20:42:33.000Z (10 months ago)
- Last Synced: 2024-09-23T17:02:00.534Z (about 2 months ago)
- Topics: generator, laravel, laravel-generator, laravel-package, lbiltech, php
- Language: PHP
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# 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.