novius / laravel-backpack-base-extended
This packages extends Backpack\Base
Installs: 7 331
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 2
Open Issues: 0
Requires
- php: >=7.3
- backpack/base: ^0.9
- laravel/framework: ~5.5
Requires (Dev)
- friendsofphp/php-cs-fixer: ~2.16.0
- orchestra/testbench: ~3.5
- phpunit/phpunit: ~6.0
README
This package extends Backpack/Base. See all features added bellow.
Installation
In your terminal:
composer require novius/laravel-backpack-base-extended
Then, if you are on Laravel 5.4 (no need for Laravel 5.5 and higher), register the service provider to your config/app.php
file:
'providers' => [ ... Novius\Backpack\Base\BaseServiceProvider::class, ];
Launch these commands:
php artisan vendor:publish --provider="Novius\Backpack\Base\BaseServiceProvider" --tag="lang" php artisan vendor:publish --provider="Novius\Backpack\Base\BaseServiceProvider" --tag="views" --force php artisan vendor:publish --provider="Novius\Backpack\Base\BaseServiceProvider" --tag="routes"
Configuration
You can override default routes after having published them (previous step)
/routes/backpack/base.php
Usage & Features
Language / i18n
backpackextended
namespace is now available.
You can use it in your own views like this:
{{ trans('backpackextended::base.switch_language') }}
Testing
Run the tests with:
./test.sh
Lint
Run php-cs with:
./cs.sh
Contributing
Contributions are welcome! Leave an issue on Github, or create a Pull Request.
Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.