Answers for "witherrors laravel 8"

PHP
8

if any error in blade laravel

@if ($errors->any())
     @foreach ($errors->all() as $error)
         <div>{{$error}}</div>
     @endforeach
 @endif
Posted by: Guest on November-01-2020
0

withErrors laravel

Inside controller : 
return back()->withError('You are not logged in or Your session has expired');

Inside blade file : 
 @if(Session::has('errors'))
 	toastr.error("{{Session::get('errors')->first()}}");
 @endif
   
It’s a “magic” method, in that any call to a method with a prefix of with will 
be added to the session as flash data. So withError() will add flash data
under the key error; withErrors() will add flash data under the key errors; 
withSuccess() will add flash data under the key of success; and so on.
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language