Jeremy Brayton
Jeremy Brayton
I'm using the following code to filter the repository to just return records for an associated user_id: ``` return $this->whereHas($relation, function ($query) use ($userId) { $query->where('users.id', $userId); })->all(); ``` It...
I followed https://github.com/spatie/eloquent-sortable#usage, specifically optionally setting the order_column. It looks like the problem with doing this is the line https://github.com/michielkempen/nova-order-field/blob/master/src/Orderable.php#L125 returns null because `$model->sortable` is null unless you explicitly set...
https://github.com/slampenny/Swaggervel/blob/master/src/Jlapp/Swaggervel/routes.php#L24 points to the codepath being hit. For current Swagger runs via the CLI, it doesn't recreate the output directory at all it just dumps the file. The part of...
This addresses issue #61. Reverted to workflow introduced before commit d2b68480f2977e26c3976c2fdb01be03f22a5c91. Obliterating the directory in the current manner was causing havoc with our deployment. I was erroneously committing the local...
Work backwards to create a LinkedIn `data.json` and `categories.json` from the data specified at http://registry.jsonresume.org/. That could be the basis of an export to LinkedIn, though I'd honestly have no...
What spurred this was the dense reading material in https://github.com/braytonium/beta_curriculum_changes/blob/main/reading/book_search_books.livemd. It would likely be highly useful to have a `Reading time - 5 mins` section like https://fly.io/phoenix-files/phx-gen-auth/. `Reading time 5...