billyct
billyct
Just had this error Kap 3.5.1 macOS 12.0.1 Intel Core it works well the first time, then always shows me `Error: Could not start recording within 5 seconds`. Tested [aperture-node...
yes, it not support the dynamic Snippet Form. your idea is so cool. I will try to do the auto-update.
@diaafares do you have any other use case of dynamic Snippet Form?
@diaafares I have done a simple auto-update for mac in [v0.2.4](https://github.com/tinkerun/tinkerun/releases/tag/v0.2.4) 😉 thx for your solution, 🤔 I will think about it.
yes, I have not done the dynamic Snippet Form yet. how about writing the dynamic data in the closure for your case above: ```php $field_user = [ 'value' => '',...
😉 Already available in [v0.2.5](https://github.com/tinkerun/tinkerun/releases/tag/v0.2.5)
@diaafares I will check the auto-updater. And Tinkerun cannot handle 10000 records, because it is only simulating Tinker’s Terminal input. if I do the 10000 records in the terminal, Tinker...
@diaafares how about just run some code like below in tinker ```php json_encode((function() { return User::selectRaw('first_name as label, id as value')->limit(3)->get()->toArray(); })()) ``` I get the dynamic data in the...
@diaafares yes, Tinkerun can't recognize the things outside the closures. so in your case, you should use ```php App\Models\User::selectRaw('first_name as label, id as value')->limit(3)->get()->toArray(); ``` not good, but I think...
@diaafares yes, I think so. I will do it when I am free