And, after yesterday’s Webmention package, a basic IndieAuth package for Laravel.
Tag: laravel
-
Been toying with Laravel a bit more. Decided …
Been toying with Laravel a bit more. Decided to split off some Webmention functionality into a package of its own, https://github.com/janboddez/laravel-webmention. There’s two classes here that matter, one for receiving (
Http\Controllers\WebmentionController
), and one for sending (WebmentionSender
). Hoping to add a parser of sorts later, and some CLI/Artisan commands. -
Added “unread counts” to my RSS reader’s Microsub …
Added “unread counts” to my RSS reader’s Microsub implementation. Fun fact: the reader itself—the new one—doesn’t display them. But Microsub clients will.
Some (not very) creative use of Laravel’s `hasManyThrough`, `withCount`, and `$casts` array is all it took!
-
Bookmarked https://aaronfrancis.com/2020/laravel-pseudo-daemons. A Laravel pseudo-daemon “will instruct Laravel …
Bookmarked https://aaronfrancis.com/2020/laravel-pseudo-daemons.
A Laravel pseudo-daemon “will instruct Laravel to try to run [a] command every minute, to place it in the background, and to not start another one until the first one is finished.”
> Laravel handles that whole part for us, out of the box, for free.
-
Adding an OPML Endpoint to My Aperture Instance
I was looking for a way to easily import feeds into Aperture, actually, and then I realized it’s not hard at all to add an export endpoint instead.
-
My site uses Corcel, a sort of translation …
My site uses Corcel, a sort of translation layer between WordPress’s database and Laraval’s Eloquent ORM. I’ve got WordPress living on a separate domain, and a symlink to its uploads folder in my Laravel app’s `public` folder. Accessors help me filter image tags, and the few shortcodes actually in use behave like they would in a pure WordPress environment, while my Blade-powered front end is 100% under my control. I like that; some of the markup WordPress produces is a bit of a mess.
-
Fix Pagination when Using Laravel Page Cache, Part II
Much like its predecessor, this article’s all about Laravel websites that rely on the Laravel Page Cache package for page caching. This time, though, we’re going to make caching work for pages with a query string in their URL, too.