Adam Anderly
Adam Anderly
@LorenzoSapora, will take a look at this. We're using the [`Link`](https://inertiajs.com/links) element from Inertia (which Nova uses internally) but it doesn't automatically include the currently selected tab (or any URL...
Yeah, the `route` method is just using the Laravel `route` helper under the covers which won't include URL hashes. So, most likely, we'd either need to wrap the Link component...
You should be able to use patch for this. Have you tried the patch method on ODataClient?
The helper methods on ODataClient simply forward to the `request` method [here](../blob/master/src/ODataClient.php#L319), so you can try calling `request` directly like this: ```php $client->request(HttpMethod::PUT, $requestUri, $body); ``` This is using the...
Closed by #166
@kosimas see https://github.com/saintsystems/odata-client-php/issues/159