“Méthode du contrôleur d'appel Laravel d'un autre contrôleur” Réponses codées

Méthode du contrôleur Laravel Access à partir d'un autre contrôleur

// Include the other controller in this controller
use App\Http\Controllers\TasksController;

// Instantiate other controller class in this controller's method
$tasks_controller = new TasksController;
// Use other controller's method in this controller's method
$tasks_controller->postNotification($comment_content, $author);
BluSilva

Fonction du contrôleur d'appel d'un autre contrôleur Laravel

// Include the other controller in this controller
use App\Http\Controllers\TasksController;

// Instantiate other controller class in this controller's method
$tasks_controller = new TasksController;
// Use other controller's method in this controller's method
$tasks_controller->postNotification($comment_content, $author);
Xfantasia

Méthode du contrôleur d'appel Laravel à partir de la vue

Just try this in your view :

{{ ControllerName::Functionname($params); }}
OR

<?php echo ControllerName::Functionname($params);?>
Panicky Pony

Méthode du contrôleur d'appel Laravel d'un autre contrôleur

return \App::call('bla\bla\ControllerName@functionName');
TryOrFail

Réponses similaires à “Méthode du contrôleur d'appel Laravel d'un autre contrôleur”

Questions similaires à “Méthode du contrôleur d'appel Laravel d'un autre contrôleur”

Plus de réponses similaires à “Méthode du contrôleur d'appel Laravel d'un autre contrôleur” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code