Download the PHP package sukohi/hilt without Composer
On this page you can find all versions of the php package sukohi/hilt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor sukohi
Package hilt
Short Description A Laravel package to add @error directive of Blade.
License MIT
Package hilt
Short Description A Laravel package to add @error directive of Blade.
License MIT
Please rate this library. Is it a good library?
Informations about the package hilt
Hilt
A Laravel package to add @error directive of Blade.
Installation
Execute the following composer command.
composer require sukohi/hilt:1.*
Set the ServiceProvider in config/app.php
'providers' => [
...Others...,
Sukohi\Hilt\HiltServiceProvider::class,
]
Preparation
To publish the view, execute the following commands.
php artisan vendor:publish
- You can change the view located at
resources/views/vendor/hilt/error.blade.php
.
Then set Blade directive of Hilt in app/Providers/AppServiceProvider.php
like so.
public function boot()
{
\Sukohi\Hilt\Hilt::directive();
}
Now you can use @error()
in your views.
Usage
(in View)
@error('INPUT-KEY') <= An error will be displayed here.
// e.g.
@error('email')
@error('password')
@error('name')
License
This package is licensed under the MIT License.
Copyright 2016 Sukohi Kuhoh
All versions of hilt with dependencies
PHP Build Version
Package Version
Requires
laravel/framework Version
~5.0
The package sukohi/hilt contains the following files
Loading the files please wait ....