Node is saved as draft in My Content >> Draft
-
Relative URLs in Laravel 5
In Laravel 5, when you use
<a href="{{ route('/about' }}">About</a>
it generate url like About
So to generate relative url or url without domain name, you can use this syntax
{{ route('/about', array(), false) }}
0 Comment(s)