“Fonction du contrôleur d'appel d'un autre contrôleur Laravel” 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 d'un autre contrôleur

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

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

Questions similaires à “Fonction du contrôleur d'appel d'un autre contrôleur Laravel”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code