Laravel package for presenting sites still in develompment.
lkovace18/laravel-presentation-mode is a Laravel package for laravel package for presenting sites still in develompment..
It currently has 0 GitHub stars and 9 downloads on Packagist (latest version 0.0.1).
Install it with composer require lkovace18/laravel-presentation-mode.
Discover more Laravel packages by lkovace18
or browse all Laravel packages to compare alternatives.
Last updated
here is solution ...
To get started, use Composer to add the package to your project's dependencies:
composer require lkovace18/laravel-presentation-mode
After installing the Laravel presentation mode, register the lKovace18\PresentationMode\PresentationModeServiceProvider in your config/app.php configuration file:
'providers' => [
// Other service providers...
lKovace18\PresentationMode\PresentationModeServiceProvider::class,
],
add setup your .env file:
PRESENTATION_MODE=true
PRESENTATION_KEY=<yourkey>
Publish configuration
php artisan vendor:publish --provider="lKovace18\PresentationMode\PresentationModeServiceProvider" --tag="config"
Edit configuration file config/presentation-mode.php to suit your needs.
If you want to modify under_development view you can publish it:
php artisan vendor:publish --provider="lKovace18\PresentationMode\PresentationModeServiceProvider" --tag="views"
Or you can make your own route and view and add it in config config/presentation-mode.php:
/**
* url of under development page
*/
'under_development_url' => <your_in_development_url>,
If you want to modify translations for view publish:
php artisan vendor:publish --provider="lKovace18\PresentationMode\PresentationModeServiceProvider" --tag="translations"
If you want to make custom middleware you can add the PresentationMode facade to the aliases array in your app configuration file:
'PresentationMode' => lKovace18\PresentationMode\Facades\PresentationMode::class,
finish and refactor tests
make command for setting presentation mode on
finish documentation
Laravel Presentation Mode is open-sourced software licensed under the MIT license