Reputation: 535
I have a page home.blade.php
.there is an href tag in this page which redirect to another page login.blade.php
.
<a href="{{URL::to('login')}}">Login</a>.Any simple method to return to that page directly from this href tag?
Upvotes: 3
Views: 6172
Reputation: 1316
Try this:
You can redirect at any blade template via Route::get, without using a controller.
In routes web.php
Route::get('/login', function(){
return view('login'); // Your Blade template name
});
Upvotes: 4