“Rufen Sie die Controller -Funktion von einem anderen Controller Laravel auf” Code-Antworten

Laravel Access Controller -Methode von einem anderen Controller

// 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

Rufen Sie die Controller -Funktion von einem anderen Controller Laravel auf

// 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

Laravel Call Controller -Methode von einem anderen Controller

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

Ähnliche Antworten wie “Rufen Sie die Controller -Funktion von einem anderen Controller Laravel auf”

Fragen ähnlich wie “Rufen Sie die Controller -Funktion von einem anderen Controller Laravel auf”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen