Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


https://dev.to/saaberdev https://res.cloudinary.com/practicaldev/image/fetch/s--Wmb6mtbq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-upl...
Let's create a confirmation dialog using Livewire. The confirm dialog will display and do what ever it needs after the user click on confirm button. 'display',...
If you familiar with Jetstream, you will noticed app/Actions directory in your project. The usage should only need to extend the base class, define rules and mo...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Working with files in any application is a crucial part of any system. Laravel provides a filesystem from where we can interact with files; file upload, storing...
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.
Splade provides a super easy way to build Single Page Applications (SPA) using standard Laravel Blade templates, enhanced with renderless Vue 3 components. To l...
When writing request validators in Laravel, it is useful to know which incoming data will lead to a validation error, and which data will pass. A convenient way...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Discord Webhook is a fantastic package that helps you to generate beautiful discord messages and send them with webhook. You can install this package via compos...
Programming Language Development 101 - The Language Let's start by taking a look at the language we're going to be developing. We'll call the language plod (exp...
Compiling PHP's conditional statements to Rust It's time to take another step into compilation land and look at compiling PHP's conditional statements (if state...
Experimentally compiling PHP code to Rust Some of you might already know that I've been working on a handwritten PHP parser in Rust. Inspired by Tim's...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.

ryangjchandler.co.uk

Macros in Laravel
Laravel's Illuminate\Support\Macroable trait allows you extend classes at runtime with custom methods. The idea is that you provide a named Closure, or callable...
https://dev.to/holyfalcon https://dev.to/holyfalcon Posted on Sep 7 In this section, I will review how many requests we can handle in Laravel based on my experi...
I use one computer for both my personal and business projects. This means I have multiple github accounts that I use on the computer. The problem with that is t...
Here is a quick code snippet you can use in your projects to check if an array is empty. const isNotEmpty = arr => Array.isArray(arr) && arr.length > 0;isNotEmp...