{%title%}
{%description%}
Articles
November 28, 2020
How to Get Paddle PayLinks from a backend API Controller in Laravel
This is the follow up post to using a renderless component for Paddle paylinks. Sometimes you may have na application that has a few subscription options, sometimes not. If you have a few...
4 min read →November 13, 2020
Dynamically load Cashier Paddle buttons with renderless component
A project I have been working on has been in need of an improved billing system, with the release of the cashier-paddle package I was able to add some subscriptions to the app. Working with the...
5 min read →July 6, 2020
Use Morph Map names to resolve Model for Laravel Gate Policies
When using the Blade directives in Laravel for authorizing resources and actions such as the @can
and @cannot
you have to place the classes full path into the function, eg @can(\App\User::class)
or @can('App\User')
.
I had a cunning plan to extend the way the Gate class resolves the models in the same way as it does with Policy classes.
3 min read →