Immediately open Tinkerwell from within your Laravel applications. Think of it as a dd on steroids.
This package only works with Tinkerwell for macOS
You can install the package via composer:
composer require --dev beyondcode/tinkerwell-helperNote: You need Tinkerwell version 2.2.0+ in order to use this package.
Use the tinker method to open Tinkerwell with the given variables available in the Tinkerwell scope.
For example:
$user = User::find(1);
tinker($user);This will open Tinkerwell and you will have the $user variable available within Tinkerwell immediately.
You can also tinker with data that is not explicitly in a temporary variable:
tinker(User::find(1));In this case, the scoped variable(s) are named $temp0, $temp1, etc.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email marcel@beyondco.de instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.