Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laravel-backpack/generators
Generate files for Backpack projects
https://github.com/laravel-backpack/generators
Last synced: 6 days ago
JSON representation
Generate files for Backpack projects
- Host: GitHub
- URL: https://github.com/laravel-backpack/generators
- Owner: Laravel-Backpack
- License: mit
- Created: 2016-03-09T10:59:34.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-12-13T10:32:22.000Z (21 days ago)
- Last Synced: 2024-12-24T02:48:12.214Z (10 days ago)
- Language: PHP
- Homepage: http://backpackforlaravel.com
- Size: 418 KB
- Stars: 315
- Watchers: 18
- Forks: 64
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Support: .github/support.yml
Awesome Lists containing this project
README
# Backpack Generators
[![Latest Version on Packagist](https://img.shields.io/packagist/v/backpack/generators.svg?style=flat-square)](https://packagist.org/packages/backpack/generators)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Style CI](https://styleci.io/repos/53490941/shield)](https://styleci.io/repos/53490941)
[![Total Downloads](https://img.shields.io/packagist/dt/backpack/generators.svg?style=flat-square)](https://packagist.org/packages/backpack/generators)Quickly generate Backpack templated Models, Requests, Views and Config files for projects using [Backpack for Laravel](https://backpackforlaravel.com) as their admin panel.
> ### Security updates and breaking changes
> Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 6-12 months.## Install
Via Composer
``` bash
composer require --dev backpack/generators
```[HOT TIP] To change what files get generated, you can publish the stubs with `php artisan vendor:publish --tag=backpack-generators-stubs`. Any files you generate afterwards will start from your stubs, instead of the default ones.
## Usage
Open the console and enter one of the commands:
- **Generate Backpack\CRUD interfaces for all Eloquent models that don't already have one:**
```bash
php artisan backpack:build
```- **Generate all files for one new Backpack\CRUD interface:**
``` bash
php artisan backpack:crud {Entity_name}# Use singular, either PascalCase, snake_case or kebab-case.
# This will create a Model if there isn't one, or add
# our CrudTrait to the model if it already exists.
```- **Generate all files for a custom admin panel page:**
``` bash
php artisan backpack:page {PageName}# You can use either PascalCase, snake_case or kebab-case.
# This will generate you a Controller, a view and a route.
```- Generate a new Backpack\CRUD file:
``` bash
php artisan backpack:crud-controller {Entity_name}
php artisan backpack:crud-model {Entity_name}
php artisan backpack:crud-request {Entity_name}
```- Generate a model (available options: --softdelete)
``` bash
php artisan backpack:model {Entity_name}
```- Generate a request
``` bash
php artisan backpack:request {Entity_name}
```- Generate a view (available options: --plain)
``` bash
php artisan backpack:view {Entity_name}
```- Generate a config file
``` bash
php artisan backpack:config {Entity_name}
```- Generate a button
``` bash
php artisan backpack:button {button_name}
```- Generate a field
``` bash
php artisan backpack:field {field_name}// or generate a field starting from another field
php artisan backpack:field {field_name} --from={original_field_name}
```- Generate a column
``` bash
php artisan backpack:column {column_name}// or generate a column starting from another column
php artisan backpack:column {column_name} --from={original_column_name}
```- Generate a filter
``` bash
php artisan backpack:filter {filter_name}// or generate a filter starting from another filter
php artisan backpack:filter {filter_name} --from={original_filter_name}
```- Generate a widget
``` bash
php artisan backpack:widget {widget_name}// or generate a widget starting from another widget
php artisan backpack:widget {widget_name} --from={original_widget_name}
```- Generate a custom operation
``` bash
php artisan backpack:crud-operation {OperationName}
```- Generate a custom form operation
``` bash
php artisan backpack:crud-form-operation {OperationName}
```## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Credits
- [Cristian Tone](http://updivision.com)
- [Cristian Tabacitu](http://tabacitu.ro)
- [All Contributors](link-contributors)## License
Backpack is free for non-commercial use and 69 EUR/project for commercial use. Please see [License File](LICENSE.md) and [backpackforlaravel.com](https://backpackforlaravel.com/#pricing) for more information.
## Hire us
We've spend more than 50.000 hours creating, polishing and maintaining administration panels on Laravel. We've developed e-Commerce, e-Learning, ERPs, social networks, payment gateways and much more. We've worked on admin panels _so much_, that we've created one of the most popular software in its niche - just from making public what was repetitive in our projects.
If you are looking for a developer/team to help you build an admin panel on Laravel, look no further. You'll have a difficult time finding someone with more experience & enthusiasm for this. This is _what we do_. [Contact us](https://backpackforlaravel.com/need-freelancer-or-development-team). Let's see if we can work together.