Last active
March 10, 2025 14:22
-
-
Save nasirkhan/809eee36875dc7c1935bc4289be214c6 to your computer and use it in GitHub Desktop.
Call Laravel Controller methods via command line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
php artisan tinker | |
$controller = app()->make('App\Http\Controllers\MyController'); | |
app()->call([$controller, 'myMethodName'], []); | |
//the last [] in the app()->call() can hold arguments such as [user_id] => 10 etc' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about this?