Blog
Insights, guides, and best practices from the Laravel Company team.
Laravel mail: pass string instead of view
Title: Sending Emails with Laravel: Utilizing Database Stored Templates Instead of View Files Body: Laravel is an amazing PHP framework with various features...
Laravel automatically logged out after few seconds?
# Laravel Automatically Logged Out After Few Seconds? Debugging Concurrent Session Issues in APIs As a senior developer working with Laravel, especially when...
Is there a way to use javascript variable inside Laravel blade template?
# Bridging the Gap: Using JavaScript Variables with Laravel Blade Templates As developers working in the full-stack ecosystem, we constantly find ourselves...
Fatal error: Class 'SoapClient' not found after upgrading PHP from version 7.0 to 7.2
# Fatal Error: Class 'SoapClient' Not Found After Upgrading PHP (7.0 to 7.2) Upgrading a core component like PHP can sometimes introduce unexpected...
Installed Laravel sanctum but faced an error during creating token
# Solving the Sanctum Token Creation Mystery: Why You Encountered the `PersonalAccessToken` Error As a senior developer working with the Laravel ecosystem, I...
How to calculate difference between two dates as day month year using carbon in laravel
# How to Calculate Date Differences Accurately in Laravel using Carbon Calculating the difference between two dates—especially when trying to break it down...
Filtering pivot table data with Laravel models
# Filtering Pivot Table Data with Laravel Models: Isolating Primary Relationships As developers working with relational databases in a Laravel environment, we...
Vue meta not getting updates
# Why Your Vue Meta Tags Aren't Updating: The SEO Timing Dilemma As developers building modern Single Page Applications (SPAs) with Vue, managing metadata for...
How to forget all cookies in laravel?
# How to Forget All Cookies in Laravel: A Developer's Guide Does anyone know if there's a simple, one-line command like `Cookie::forgetAll()` to wipe out every...
Change id column name on Laravel 6.5.1
# Renaming Primary Keys in Laravel: Fixing the "Undefined Column" Error As senior developers working with relational databases and frameworks like Laravel, we...
Accessing Laravel's .env variables inside Inertia.js Vue files
# Accessing Laravel's `.env` Variables Inside Inertia.js Vue Files: The Efficient Way When building monolithic applications using the powerful combination of...
How to logout a user from API using laravel Passport
Title: Properly Logging Out Users from API Using Laravel Passport Introduction: In today's world of web development, an efficient authentication system is...