Koussay

@koossaayy.bsky.social

Laravel Developer

Putting Lyngo through its paces on a real codebase: Shoutrrr, the Coolify team's open source post scheduler. Managing an actual Laravel app's translations, not a toy demo. This is where a translation management system earns its keep, and Lyngo is earning it

Most Laravel apps don't need repositories. You wrapped Eloquent, an abstraction, in another abstraction, so you could swap a database you will never swap. Delete the layer and read your models like everyone eventually does anyway.

Laravel tip: stop reaching for env() outside config files. Once you run config:cache, env() returns null and things break in ways that look random. Read from config(), let config files read from env. One habit, fewer 3am mysteries. #laravel #php

Small wins compound. Cleaned up a messy piece of infrastructure today that's been quietly wasting time for months. Nobody will notice it's fixed, which is exactly the point.

Recently I've made a little website, to test some stuff. I followed the usual rule, sitemap, adding it to Google, and that sort of things. It has been a month or so. And behold 🤯, I've never got something like for my personal stuff. I guess I should study why this happened. ⬇️

Bild

Hey Laravel community. I'm looking for a good tutorial or course that helps me to test the integration of Laravel Cashier with Paddle. I'm testing multiple payment processors, and it was not enough with the Laravel Documentation. Is there any resource to recommend? I'm using Inertia with React, BTW.

File uploads are almost working perfectly, still one thing to try out, which is sudden internet shutdown or drop of speed (I have horror stories about those ones), which of course will pause the upload, so I'll try to put a retry mechanism. #php #laravel #livewire

I have something that's bothering me in Filament. In the File Uploader component, the upload starts once the files are selected. This causes no issues at all. The problem arises when uploading big files, the user has to wait for the upload to finish to submit the form ⬇️