chescos

Results 11 issues of chescos

The readme says that the embedded webserver has a `Full stack json-api`. I can't find a mention of this anywhere else. Where is it documentated?

The PHPDoc generation for models (`php artisan ide-helper:models`) generates the following: ``` * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|User newQuery()...

enhancement

Is it possible to add eager-loading for the resources?

**Is your feature proposal related to a problem? Please describe.** It seems that it is currently not possible to eager-load multiple relationships through the `@with` directive. **Describe the solution you'd...

enhancement

Running this code with PHP 7.4 works fine: ```php (new Range('49.12.11.10', '49.12.11.35'))->getNetworks(); ``` However, with PHP 8.2, I'm getting this exception: ``` NetworkException: Exclude subnet not within target network ```

## Possible bug ### Is this a possible bug in a feature of sharp, unrelated to installation? - [x] Running `npm install sharp` completes without error. - [x] Running `node...

question

Let's say I have a `User` resource and an `Invoice` resource. I define the relationship on the `User` resource like this: ``` RelationshipSelector::make('Relations') ->addOption('Invoices', HasMany::make('Invoices', 'invoices', Invoice::class)) ``` And on...

Nova seems to have changed some of its styles, so the margin/padding is now missing for filters. Here's a screenshot showing the problem: ![Selection_880](https://user-images.githubusercontent.com/12296880/64338325-cb7bf300-cfe1-11e9-8e3f-e71f5bbd1bc5.png)

Similar issue to #1614 but for `Attirbute` methods. For example, this: ```php /** * @return Attribute */ public function exampleAttribute(): Attribute { return Attribute::make( get: fn (): array => ['hello'...

enhancement