Run function from Button or URL in Laravel

回眸只為那壹抹淺笑 提交于 2019-12-12 07:06:43

问题


I have the following test function, that I want to call directly from my URL or by clicking a link from my blade view.

public function callMeDirectlyFromUrl()
{
    return "I have been called from URL :)";
}

My Question: Is it possible to call a function directly from button-click or URL link from blade view in Laravel?


回答1:


Here is the solution:

We assume you have a function callMeDirectlyFromUrl in YourController, here how you can call the function directly from URL, Hyperlink or Button.

Create Route

Route::get('/pagelink', 'YourController@callMeDirectlyFromUrl');

Add link in the view blade php file

<a href="{{action('YourController@callMeDirectlyFromUrl')}}">Link name/Embedded Button</a>

This has been tested on Laravel 4.2 -> 5.2 so far.

By clicking on this link or call the URL www.somedomain.com/pagelink the function will executed directly.



来源:https://stackoverflow.com/questions/27322854/run-function-from-button-or-url-in-laravel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!