laravel call function in controller code example
Example 1: laravel create controller
php artisan make:controller MyController
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 create resource controller
Route::resource('photos', 'PhotoController');
Example 4: laravel call controller method from another controller
return \App::call('bla\bla\ControllerName@functionName');