Ad
How Do I Put Hyperlink In Buttons With Laravel?
Can someone help me please,
I have a view dashboard and I want to put a hyperlink button in HTML, using a Laravel 5 command. When that button is clicked, it may show encomendas view.
This is the view Dashboard:
<a target="_blank" rel="nofollow noreferrer" href="{{ URL::route('zoekenindex') }}" class="btn btn-default">Left</a>
In my controller I have this:
Route::get('zoekenindex', array('as' => 'zoekenindex', 'uses' => '[email protected]'))
Ad
Answer
I don't know if I understood the question, but try this:
<a target="_blank" rel="nofollow noreferrer" href="{{ action('[email protected]') }}">Left</a>
EncomendasController
is the name of the controller.
show
is the method inside the controller.
And remember to define it in routes.php.
Ad
source: stackoverflow.com
Related Questions
- → "failed to open stream" error when executing "migrate:make"
- → October CMS Plugin Routes.php not registering
- → OctoberCMS Migrate Table
- → OctoberCMS Rain User plugin not working or redirecting
- → October CMS Custom Mail Layout
- → October CMS - How to correctly route
- → October CMS create a multi select Form field
- → October CMS - Conditionally Load a Different Page
- → How to disable assets combining on development in OctoberCMS
- → October CMS - Radio Button Ajax Click Twice in a Row Causes Content to disappear
- → OctoberCms component: How to display all ID(items) instead of sorting only one ID?
- → In OctoberCMS how do you find the hint path?
- → How to register middlewares in OctoberCMS plugin?
Ad