i have created route group using middleware.It works perfectly.
But i have one issue where if i navigate url to
http://localhost/laravel-news/public/admin/add-post-new
this without login then it redirect to guest home page
but if i navigate url to
http://localhost/laravel-news/public/add-post-new
without admin in url then it return blank page.now my question is how to show page not found 404 page for that.i am using laravel 5.1
thank you
update
Route::group(['middleware' => 'admin'], function () {
Route::get('add-post-new', function () {
// dd('something');
return view('a.addPost');
});
Route::post('/add-post-new','PostsController@addPost');
Route::get('/all-post', function () {return view('a.all_post'); });
});
resources/views/errors/404.blade.php
and see if the page is rendered.. – Mihai Matei