Bookmark Category
Laravel
-
WordPress-like Hooks and Filters in Laravel - Pine
One of the most powerful tools in WordPress is the hook system it uses. It’s a nice way to modify values from anywhere. It adds huge flexibi...
Check it out -
Application Hooks with Laravel Events
Laravel Events is one of those features that is critical to many applications and the applications I am currently working on are no differen...
Check it out -
Laravel. Use scope() in models with relation
I have two related models: Category and Post. The Post model has a published scope (method scopePublished()). When I try to get all catego...
Check it out -
What is TALL Stack
-
User authentication in a chrome extension
5 votes and 0 comments so far on Reddit
Check it out -
Getting started with Amazon S3 storage in Laravel
In this 15 minute video, I'll show you how to set up an Amazon S3 bucket to store images and files with your Laravel app using a few built-i...
Check it out -
Using Auth Controller with CAC Authentication
Hoping someone can help advise on the best way to couple laravel's built-in authentication with CAC (Common Access Card) certificates. In m...
Check it out -
Blogging with Markdown in Laravel - Aaron Francis
Writing beautiful and simple blogs with Markdown in Laravel.
Check it out -
Stripe Connect & Laravel Integration Tutorial
9 votes and 5 comments so far on Reddit
Check it out -
Laravel and Stripe Express: Part One - Introduction
This part is the introduction of what Stripe Express is.What Is Stripe ExpressExpress accounts are a type of Stripe connect account and is g...
Check it out -
Best way to authenticate users in Chrome extension
Developing a chrome extension for my Laravel web app and I am wondering what the best way to authenticate a user in the extension is? Shoul...
Check it out -
Using Laravel's Markdown parser for a blog - and adding lazy images
I found out Laravel 6.x already ships with a pretty powerful package for parsing Markdown, and it can be extended and customized. After a fe...
Check it out -
Retrive all rows from last month (Laravel + Eloquent)
I'm trying to get all records that belongs to last month, so far I managed to get all from last month but to date today, I'm not sure how I...
Check it out -
Adding try/catch to Laravel collections | freek.dev
A few weeks ago, Jmac tweeted out an excellent idea. What if we could use try and catch in a collection chain?Collections are the jam. Yet t...
Check it out -
Laravel Form Requests - more than validation | pociot.dev
Laravel form requests are one of the most underrated features, maybe even a bit "hidden" inside the Laravel framework. Don't just take my wo...
Check it out -
Laravel 8 Route Macros Step by Step Example
You can assign a group of routes that uses a namespace like App\Http\Controllers\Admin. And you can create a namespace using the fluent rout...
Check it out -
Livewire 404: GET http://localhost/livewire/livewire.js net::ERR_ABORTED 40...
I'm learning how to use livewire and laravel, I was trying to bind some data through an input I wrote this code: home.blade.php: <html> <hea...
Check it out -
How to Optimize PHP Laravel Web Application for High Performance?
Laravel is many things. But fast isn't one of them. Let's learn some tricks of the trade to make it go faster! No PHP developer is untouched...
Check it out -
Blazing fast search with MeiliSearch and Laravel Forge | pociot.dev
As I am currently writing documentation for Invoker, I noticed something that was lacking on our Beyond Code website. All documentation page...
Check it out -
Working with third party services in Laravel
There are many ways to work with 3rd party services in Laravel, here is how I do it. I will walk through setting up a service to connect to...
Check it out