laravel-restify
laravel-restify copied to clipboard
Support custom route key
ref: https://laravel.com/docs/11.x/routing#customizing-the-key
PR Summary
-
Enhancement in Model Querying
The way we retrieve data from our repositories has been improved in
InteractWithRepositories.php. Now we have added more criteria to our search which may give us more specific results. We use attributes such asrepositoryIdanduriKeyfor narrowing down the data. An older method for data fetching that usedwhereKeyhas been replaced with a more robustwherecondition employinggetRouteKeyName. This means we are improving the precision of our data retrieval methods.
Thank you!