Implementing Email Verification in Laravel 11 with Jetstream and Inertia/Vue
This outlines the steps to implement email verification in a Laravel 11 application using Jetstream with Inertia + Vue. This will ensure new users…
Read postEverything in this archive, newest first.
This outlines the steps to implement email verification in a Laravel 11 application using Jetstream with Inertia + Vue. This will ensure new users…
Read postWhen manually inserting data with explicit ID values into a PostgreSQL database, the auto-increment sequence doesn't automatically adjust. This can lead to conflicts when…
Read postImplementing email functionality is far from straightforward. The right solution depends on your specific needs, user base, and resources. Sending and Receiving Sending and…
Read postIn Laravel applications with Inertia.js and Vue, sharing data between components often involves provide/inject patterns, or custom composables. Inertia's page props offer a simple…
Read postWhen working with Laravel's Eloquent ORM, you may have noticed that you can access relationships with parentheses () and without. This small syntactical difference…
Read postThe Problem: Redundant Database Queries Imagine you have a Laravel component that fetches data from the database. This component is used multiple times in…
Read postartisan migrate:fresh php artisan migrate:fresh This command: Drops all tables in the database Runs all migrations from scratch Key points: Completely wipes out the…
Read postAs a freelance Laravel and Vue.js developer in 2024, I can confidently say that there has never been a better time to be a…
Read postIn Laravel applications using Inertia.js and Vue.js, there might be scenarios where you need to submit a form to a new window. Standard Inertia.js…
Read postDual-use Controllers in Laravel Dual-use controllers in Laravel serve a dual purpose: they return/render an Inertia/Vue page when accessed normally and JSON data when…
Read postWhen you return an Inertia response using Inertia::render(), it doesn't return a standard Laravel response object directly. Instead, it returns an instance of Inertia\Response,…
Read postShould you run npm run build on your development machine and commit everything to Git or should you commit your app without those files…
Read post