alwaysFrom laravel 5.8 code example
Example 1: displaying errors in laravel
@if(count($errors) > 0)
<div class="p-1">
@foreach($errors->all() as $error)
<div class="alert alert-warning alert-danger fade show" role="alert">{{$error}} <button type="button" class="close"
data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button></div>
@endforeach
</div>
@endif
Example 2: laravel validation types for float
//For float, must use numeric validator
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'field' => 'numeric'
];
}