Answers for "laravel return view with href attribut"

PHP
0

href in laravel view

In you app config file change the url to localhost/example/public

Then when you want to link to something

<a href="{{ url('page') }}">Some Text</a>

without blade

<a href="<?php echo url('page') ?>">Some Text</a>
Posted by: Guest on August-21-2021

Code answers related to "laravel return view with href attribut"

Browse Popular Code Answers by Language