Blog

Insights, guides, and best practices from the Laravel Company team.

Laravel Company

I got Unsupported mail transport [sendgrid] error in laravel

# Solving the "Unsupported mail transport [sendgrid]" Error in Laravel: A Deep Dive into Mail Configuration As a senior developer, I’ve seen countless...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel - custom .env file

# Mastering Environment Management in Laravel: Custom `.env` File Loading Laravel enforces a clean separation of configuration by assuming that the...

2026-06-29 Stefan Bogdanescu
Laravel Company

Removing html tags in Laravel blade

# Stripping HTML Tags from Database Strings in Laravel: A Developer's Guide Dealing with data persistence, especially when mixing plain text and formatted...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to modify request input after validation in laravel?

# Centralizing Request Transformation in Laravel: Beyond Repetitive Code As developers working within the Laravel ecosystem, we often deal with scenarios where...

2026-06-29 Stefan Bogdanescu
Laravel Company

How can i create own alias for "php artisan" command on windows?

# Mastering Your Command Line: How to Create Custom Aliases for `php artisan` on Windows As a senior developer, I often encounter situations where the standard...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel REST API with query parameters

# Mastering Query Parameters in Laravel REST APIs with Eloquent Joins As developers building robust APIs with Laravel, we often encounter a common challenge:...

2026-06-29 Stefan Bogdanescu
Laravel Company

How to Set Variables in a Laravel Blade Template

Title: Mastering Laravel Blade Template Variables for Enhanced Functionality Introduction: In this article, we'll explore how to effectively handle variables...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel Artisan: How does `schedule:run` work?

Title: Laravel Artisan: Deep Dive into `schedule:run` Command Functionality Body: When working with Laravel, understanding the core features like `php artisan...

2026-06-29 Stefan Bogdanescu
Laravel Company

Laravel use Request validation with api

# Mastering API Validation in Laravel: Returning Structured Error Messages Developing robust APIs requires more than just checking if data is present; it...

2026-06-29 Stefan Bogdanescu
Laravel Company

Undefined variable: title (View: C:\xampp\htdocs\myproject\resources\views\categories\index.blade.php)

# Solving "Undefined Variable": Debugging Blade View Errors in Laravel As a senior developer working with the Laravel ecosystem, you will inevitably run into...

2026-06-29 Stefan Bogdanescu
Laravel Company

Get User IP address in laravel with similar method to HTTP_X_FORWARDED_FOR

# Getting the Real User IP Address in Laravel: Beyond `Request::ip()` As senior developers, we often encounter situations where the simple functions provided...

2026-06-29 Stefan Bogdanescu
Laravel Company

wire:click call two methods at once

# Mastering Multi-Action Events in Livewire: How to Call Two Methods at Once As a senior developer working with reactive frameworks like Livewire,...

2026-06-29 Stefan Bogdanescu