pintend

Results 7 comments of pintend

I was able to get a list of Projects by first making a custom Ability model with ```php // Somewhere in a service provider Bouncer::useAbilityModel(\App\Models\Bouncer\Ability::class); ``` i then added the...

You can call `->__destruct()` manually

@barchard did you ever figure out an alternative? I'm running into the same issue. Thanks

> > I always create a method called `User::auth()` on my user to get proper hints. > > This might be interesting to add to [`\Illuminate\Auth\Authenticatable`](https://github.com/laravel/framework/blob/12.x/src/Illuminate/Auth/Authenticatable.php), however, that won't solve...

as of Sep 2020 this was not supported https://github.com/iEvgeny/cctv-viewer/issues/5#issuecomment-694482598, has this been updated or its still the same? both 16:9 and 4:3 wont fill that extra space on top and...

For those with the same issue, you can manually override the Geometry aspect ratio in the config `models="[{\"aspectRatio\":{\"width\":16,\"height\":10}` and then update the default FFmpeg options with `-aspect 16:10` to match...

Another possible solution is passing the module name along with `Inertia::render()` for example ```php return Inertia::render('Tracker:Resource/Page', [ 'someProp' => $value ]); ``` ```js resolve: (name) => { const [module, page]...