Download the PHP package hotash/laravel-auto-compose without Composer
On this page you can find all versions of the php package hotash/laravel-auto-compose. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hotash/laravel-auto-compose
More information about hotash/laravel-auto-compose
Files in hotash/laravel-auto-compose
Package laravel-auto-compose
Short Description A PHP Package To Automatically Compose Route Parameters To Appropriate View In Laravel.
License MIT
Homepage https://github.com/bdsumon4u/laravel-auto-compose
Informations about the package laravel-auto-compose
Laravel Auto Compose
A PHP Package To Automatically Compose Route Parameters To Appropriate View In Laravel.
Installation
You can install the package via composer:
Usage
Nothing to do, just use your route parameters in your views. Don't need to pass the parameters from controller to view unless you modify the parameters in the controller.
All route parameters will be automatically passed to the view by the laravel-auto-compose
Package.
Details
If you modify a route parameter but don't pass it to the view from the controller, you'll lose the modification.
In the example above, we haven't passed $product
to our view. So, it wil not be available in the view.
Now, what about $id
? Well, the change of $id
variable in the controller will not affect the $id
variable in the view.
In order to have the modification in our view, we must pass the $id
variable from the controller to our view.
Another Nice Example
We've loaded a relationship and updated $product
variable.
Is the relationship loaded on view?
Yes, it is. But why?
You're an Artisan, I'm leaving it upto you.
Request
Please consider giving a star.
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Sumon Ahmed
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-auto-compose with dependencies
illuminate/routing Version ^7.0|^8.0
illuminate/support Version ^7.0|^8.0
illuminate/view Version ^7.0|^8.0