Jacob Baker-Kretzmar
Jacob Baker-Kretzmar
We're going to make a site template that uses Vite but I just want to clarify that there's nothing stopping you from using Vite with Jigsaw right now, you can...
Does this mean ```php class Foo { use Bar; use Baz; } ``` instead of ```php class Foo { use Bar, Baz; } ``` or ```php use Foo\Bar; use Foo\Baz;...
What exactly do they return for you? Please share the entire output of both of those methods if possible. Are you on Windows?
Gotcha, thanks. `/index.html` should be the only one that's ever missing, its relative 'pretty' path is `/` which gets trimmed to `''`. For now you should be able to safely...
> one more thing, dump() does not output logs to the build outout for me, but maybe I am mistaken where to look - can you please point me into...
It looks like there's other output missing there... does that build succeed? On a fresh install it should show the two lines you have there, then the dumps, then `Build...
Weird... are you calling `dump()` anywhere else, or manually `var_dump`ing or `echo`ing other stuff?
Personally, no. I much prefer mass assignment with `create()` and `update()` over the individual property assignment in that example, and we already have a rule that lints `$request->all()` to encourage...
@keradus @SpacePossum @gharlan anything else you need from me here?
Interesting. To fix the lint, yes, function namespaces and names should be sorted alphabetically mixed in with classes. Not sure what we actually want here though. Does adding a blank...