graciano / blade-helpers
Helpers for laravel blade template inputs.
Installs: 126
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/graciano/blade-helpers
Requires
- php: >=5.5.9
- illuminate/support: ~5.2
This package is not auto-updated.
Last update: 2025-10-12 00:57:26 UTC
README
Helpers for laravel blade template inputs. Tested in laravel 5.2, 5.3 and 5.4
Usage
<input type="text" name='name' value="{{ input_value($obj, 'name') }}" /> <!-- this will call $obj->{name} for the value, if none is found (or the obj is null), old('name') will be displayed -->
Or, if you have a checkbox:
<input type="checlbox" name='accept' {{ input_checked($obj, 'accepted') }} /> <!-- this will print checked if the obj->accepted (or the old input) is anything but false/null -->
Install
First, require the project with composer: $ composer require graciano/blade-helpers
Add the file in your composer.json files section, like this:
"autoload": { "files":[ "vendor/graciano/blade-helpers/src/helpers.php" ], }
Then, composer dumpautoload
License
This project is open-sourced software licensed under the MIT license