Chris Wright

Results 9 issues of Chris Wright

Looks like #11 may not be fully resolved. I noticed the other day that tabs cannot be interacted with while the overlay is open.

My team no longer uses bower for managing front-end dependencies and instead opted to use npm for everything. Would it be possible to add the browser release to npm? I've...

It should be possible to define individual move limits per stage. As an example: 1. In a "draw" phase the player draws 3 cards; 2. In a "play" phase the...

feature

If I define an Eloquent relationship on an API model am I able to get that relation in the API service? Somewhere in app (ie, controller): ```php // App\Models\User $author...

Resolves #39 Queries can still be performed without explicitly setting an operator: ```php Entity::where('active', true)->get(); ``` Or queries can have an operator specified: ```php Entity::where('created_at', '>', Carbon::now())->get(); ``` Queries can...

Some APIs allow you to query their data with comparison operators. It would be nice if this package facilitated this by supporting operators much like Eloquent does: ```php Model::where('created_at', '>',...

I'm not sure how updating is suppose to work. Normally to update a model with Eloquent you would do something like: ```php Customer::where('id', 1)->update([ // ... ]); ``` However, this...

Please do not update the README or Change Log, we will do this when we merge your PR. This PR (delete as applicable) * Adds a new feature Describe the...

Inspired by #40. Instead of using numeric values I've added `DIAGONAL_MODE` to set diagonal pathing behaviour. Includes tests and updates to README.