Melis Platform Frameworks Demo Tool Logic
melisplatform/melis-platform-framework-laravel-demo-tool-logic is a Laravel package for melis platform frameworks demo tool logic.
It currently has 1 GitHub stars and 320 downloads on Packagist (latest version v5.2.0).
Install it with composer require melisplatform/melis-platform-framework-laravel-demo-tool-logic.
Discover more Laravel packages by melisplatform
or browse all Laravel packages to compare alternatives.
Last updated
Laravel module handling the request of melisplatform/melis-platform-framework-laravel-demo-tool
to display the list of data using a Database query with the Laminas Database connection configuration
and the Laminas Service manager
The requirements for this module are:
It will automatically be done when using composer.
Before installing this package, this required to create first the Laravel skeleton in /thirdparty/Laravel,
then let Composer class mapping to be added to the autoloader, otherwise composer will interrupted
an error message on your command line and stop the current execution.
"autoload": {
...
"classmap": [
"../../../thirdparty/Laravel/database/seeds",
"../../../thirdparty/Laravel/database/factories"
]
}
Once it done, you can now run the following composer command:
composer require melisplatform/melis-platform-framework-laravel-demo-tool-logic
Activating the Service provider by just adding to the config/app.php file in the
Service Providers section.
MelisPlatformFrameworkLaravelDemoToolLogic\ModuleServiceProvider::class
This module handles a single route. See Routes/web.php
Route::get('/melis/laravel-list', 'IndexController@list');
See also the list of contributors who participated in this project.
This project is licensed under the OSL-3.0 License - see the LICENSE.md file for details