“Laravel -Verwendungsfunktion von einem anderen Controller” 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

Laravel -Verwendungsfunktion von einem anderen Controller

$printReport = new PrintReportController;

$prinReport->getPrintReport();
Indian Gooner

Ähnliche Antworten wie “Laravel -Verwendungsfunktion von einem anderen Controller”

Fragen ähnlich wie “Laravel -Verwendungsfunktion von einem anderen Controller”

Weitere verwandte Antworten zu “Laravel -Verwendungsfunktion von einem anderen Controller” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen