[Laravel] Laravel 5.0 with Angular 發表於 2015-02-24 分類於 Laravel Disqus: 之前有寫過一篇有關[Laravel] Laravel with Angular, 但是這個方法在Laravel 5.0裡面是不合用的 所以laravel 5.0的作法如下 在 app/Exceptions/Handler.php 裡修改render function 123456public function render($request, Exception $e) { if ($e instanceof \Symfony\Component\HttpKernel\Exception\NotFoundHttpException) return response()->view('index')->header('Content-Type', 'text/html'); return parent::render($request, $e); } 這個效果等於laravel 4.x的app::missing