Package Data | |
---|---|
Maintainer Username: | tabacitu |
Maintainer Contact: | tabacitu@backpackforlaravel.com (Cristian Tabacitu) |
Package Create Date: | 2016-03-09 |
Package Last Update: | 2024-10-15 |
Home Page: | http://backpackforlaravel.com |
Language: | PHP |
License: | proprietary |
Last Refreshed: | 2024-11-29 15:07:41 |
Package Statistics | |
---|---|
Total Downloads: | 1,885,233 |
Monthly Downloads: | 35,889 |
Daily Downloads: | 1,777 |
Total Stars: | 315 |
Total Watchers: | 18 |
Total Forks: | 64 |
Total Open Issues: | 12 |
Quickly generate Backpack templated Models, Requests, Views and Config files.
Security updates and breaking changes
Please subscribe to the Backpack Newsletter so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.
Via Composer
composer require backpack/generators --dev
For Laravel 5.5 - you're done.
For Laravel 5.4 or 5.3 you'll only want to use these generators for local
development, so you don't want to update the production
providers array in config/app.php
. Instead, add the provider in app/Providers/AppServiceProvider.php
, like so:
public function register()
{
if ($this->app->environment() == 'local') {
// $this->app->register('Laracasts\Generators\GeneratorsServiceProvider'); // you're using Jeffrey way's generators, too, right?
$this->app->register('Backpack\Generators\GeneratorsServiceProvider');
}
}
Open the console and enter one of the commands to generate:
php artisan backpack:model {Entity_name}
php artisan backpack:request {Entity_name}
php artisan backpack:view {Entity_name}
php artisan backpack:config {Entity_name}
php artisan backpack:crud {Entity_name}
php artisan backpack:crud-controller {Entity_name}
php artisan backpack:crud-model {Entity_name}
php artisan backpack:crud-request {Entity_name}
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.
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 - let's see if we can work together.