how to call controller function in view laravel code example
Example 1: call controller function from another controller laravel
use App\Http\Controllers\TasksController;
$tasks_controller = new TasksController;
$tasks_controller->postNotification($comment_content, $author);
Example 2: laravel call controller method from view
Just try this in your view :
{{ ControllerName::Functionname($params); }}
OR
<?php echo ControllerName::Functionname($params);?>
Example 3: laravel call controller method from another controller
return \App::call('bla\bla\ControllerName@functionName');