Skip to content

Instantly share code, notes, and snippets.

@nailton
Created August 7, 2020 16:50
Show Gist options
  • Save nailton/34a885737c104d82ef58fa310ca34467 to your computer and use it in GitHub Desktop.
Save nailton/34a885737c104d82ef58fa310ca34467 to your computer and use it in GitHub Desktop.
tinker call controller
❯ php artisan tinker
Psy Shell v0.10.4 (PHP 7.4.5 — cli) by Justin Hileman
>>> $controller = app()->make('path/to/controller');
=> path/to/controller {#4224
+successStatus: 200,
+valor: 199,
}
>>> app()->call([$controller, 'method'], ['variable' => item]);
=> null
>>> app()->call([$controller, 'method'], ['variable' => 'item']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment