Laravel 5.4 Middleware
kenny iets
26/04/2017 20:17:24Hallo,
Ik maak gebruik van een custom error page (404).
Door middel vanin me App\Exceptions/handler.php.
Maar hij laat in mijn middleware denk ik niet, want want zegt dat Auth::check() false is terwijl het eigenlijk gewoon true is.
Mvg,
Kenny Sinkeler
Ik maak gebruik van een custom error page (404).
Door middel vanin me App\Exceptions/handler.php.
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
public function render($request, Exception $e)
{
if($e instanceof NotFoundHttpException)
{
return response()->view('custom.404', [], 404);
}
return parent::render($request, $e);
}
{
if($e instanceof NotFoundHttpException)
{
return response()->view('custom.404', [], 404);
}
return parent::render($request, $e);
}
Maar hij laat in mijn middleware denk ik niet, want want zegt dat Auth::check() false is terwijl het eigenlijk gewoon true is.
Mvg,
Kenny Sinkeler
Gewijzigd op 26/04/2017 22:46:30 door Kenny iets
PHP hulp
06/11/2024 00:11:32kenny iets
26/04/2017 22:48:02M B
28/04/2017 09:45:23Kijk eens naar https://laravel.com/docs/5.4/errors#custom-http-error-pages.
PHP MODEV
28/04/2017 10:08:09Probeer dit eens:
Bron:
laracasts
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
if ($e instanceof NotFoundHttpException)
{
// Your stuff here
}
?>
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
if ($e instanceof NotFoundHttpException)
{
// Your stuff here
}
?>
Bron:
laracasts