Blog
Insights, guides, and best practices from the Laravel Company team.
Laravel Yajra datatables rendering custom html / column styling
# Mastering Custom HTML Rendering in Laravel Yajra DataTables It is a common challenge when integrating powerful front-end libraries like DataTables with...
Extend/override Eloquent create method - Cannot make static method non static
# Extend/override Eloquent create method - Why You Get the "Cannot make static method non static" Error As a senior developer working with Laravel and...
laravel Method Illuminate\Validation\Validator::validateRequest does not exist
Title: Understanding 'Method Illuminate\Validation\Validator::validateRequest does not exist' Error in Laravel Apps Introduction When developing web...
How the laravel Mail::failures() function works?
# How the `Mail::failures()` Function Works in Laravel: A Deep Dive into Email Delivery Tracking As a senior developer working with Laravel, tracking the...
Laravel service provider is not found
# Decoding the Error: Why "Laravel Service Provider Not Found" Happens When developing with Laravel, navigating the world of namespaces, service providers, and...
How do I fix the "401 Unauthorized" error with Laravel 8 Sanctum and VueJS 3?
# How do I fix the "401 Unauthorized" error with Laravel 8 Sanctum and VueJS 3? Dealing with authentication errors in a full-stack setupâespecially when...
Laravel 5.5 ReferenceError: $ is not defined
# Solving the `$ is not defined` Mystery in Laravel: Mastering Asset Loading and Webpack Integration As a senior developer working within the Laravel...
Delete items from Laravel Session array
# Deleting Items from the Laravel Session Array: A Developer's Guide Dealing with session data is a fundamental part of web application development. While the...
google maps in laravel project
# Integrating Google Maps in Laravel: Bridging Backend Data to Frontend Visualization Integrating external services like Google Maps into a Laravel application...
Axios not sending XSRF token with headers
# Axios and Laravel Sanctum: Solving the XSRF Token Mismatch Mystery Integrating a modern Single Page Application (SPA), like one built with Vue/Quasar, with a...
Copying a file using 2 disks with Laravel
# Mastering Cross-Disk Operations in Laravel: Copying Files Between Local and FTP Disks As developers working with Laravel, we often deal with scenarios that...
How do I change the date format Laravel outputs to JSON?
# How Do I Change the Date Format Laravel Outputs to JSON? Achieving ISO8601 Compatibility When building modern web applications, especially those that...