Chris N
Chris N
Hi, Without any `.cachetool.yml` this is the output: ```bash $ cachetool -vvv opcache:status Box Requirements Checker ======================== > Using PHP 8.1.5 > PHP is using the following php.ini file: /etc/php.ini...
Seems to be related to the tmp-dir setting... ```bash cachetool -vvv opcache:status --fcgi=127.0.0.1:9000 # works cachetool -vvv opcache:status --fcgi=127.0.0.1:9000 --tmp-dir=/dev/shm #works cachetool -vvv opcache:status --fcgi=127.0.0.1:9000 --tmp-dir=/tmp #fails ``` If we...
One thing that surfaces from this (aside from the inconsistent tmp_dir vs tmp-dir) is that when the tmp_dir setting is omitted there seems to be inconsistent handling of the default...
Hi thanks for the response I think (but am not sure at all!) that Nova will only respect auth Policies for Nova Resources linked to a Model. For Resource Tools...
@mozgbrasil I have added a PR with sample data for 1.9.2.4
Hi @Gummibeer you described the behaviour exactly here: https://github.com/spatie/laravel-activitylog/issues/445#issuecomment-430893149 > Otherwise the config value true and not available scope method (commented trait use) should throw an exception - unknown method...
@Gummibeer I have done a PR https://github.com/spatie/laravel-activitylog/pull/459 on your test to make it fail. You need to call `->with('subject')`
Thanks for looking into it. I've tried a ton of things including a simple try/catch block but I can't get anything to work.
Thanks for this. I didn't think there was an easy fix :( I initially added `withTrashed()` scopes that don't do anything but I feel this taints the application. I am...
Hi, `canSee` is already implemented as this type of [Authorization is a standard feature](https://nova.laravel.com/docs/3.0/customization/tools.html#authorization) that all tools inherit from `Laravel\Nova\Tool` You can use it like this, for example: ```php use...