Closed
Description
When creating a resource using php artisan make:json-api:resource posts
, and my posts Model is in App\Models\Post
.
the generated adapter will contain the following in the constructor:
public function __construct(StandardStrategy $paging)
{
parent::__construct(new \App\Post(), $paging);
}
I think that the path of the models should be configurable from the json-api-default.php
config file