🩸Installation
Install via composer
composer require otnansirk/laravel-dana
Service provider
Usually this service provider done automatically. But if you found this hasn't been added automatically. you still can add manually to service provider to app.php.
'providers' => [
// ...
Otnansirk\Dana\DanaCoreServiceProvider::class,
];
Publish config
You can save the DANA configuration from this package, publish the DANA config and change the default value according to your needs.
php artisan vendor:publish --provider="Otnansirk\Dana\DanaCoreServiceProvider"php artisan vendor:publish --provider="Otnansirk\Dana\DanaCoreServiceProvider"
All configurations are stored in config/dana.php
. Customize it according to your requirements.
Last updated