Laravel News

Rich Text Laravel

Rich Text Laravel is a package created by Tony Messias that integrates the Trix Editor (from 37 Signals) into your Laravel applications. If you are cr...

read more

Humanize String, Number, and Date Values into Readable Formats

<p>The php-humanizer package by <a href="https://github.com/norberttech">Norbert Orzechowicz</a> humanizes readable values such as numbers, strings, d...

read more

Request Handling with PHP Enums in Laravel

<p>Laravel enhances its request handling capabilities with direct enum support, enabling type-safe processing of enumerated values from incoming reque...

read more

Request Data Collection Handling using Laravel

<p>Laravel's <strong>request-&gt;collect()</strong> method transforms input data into collections, enabling powerful data manipulation using Laravel's...

read more

Handling Missing Request Data in Laravel

<p>Laravel provides elegant methods for managing absent request data through missing() and whenMissing(). These methods simplify the process of handli...

read more

HTTP Method Verification in Laravel

Laravel provides intuitive methods for working with HTTP verbs in incoming requests, making it easy to handle different types of operations in your ap...

read more

Managing Request Host Information in Laravel

<p>Laravel provides powerful methods for accessing and manipulating request host information, enabling precise control over URL handling and domain-sp...

read more

Handling Unmatched Routes in Laravel

Laravel's Route::fallback provides an elegant way to handle requests that don't match any defined routes. Instead of showing a generic 404 page, you c...

read more

Handling Request Data Presence in Laravel

<p>Laravel's whenHas method provides an elegant way to execute code based on input presence in requests. This feature is particularly useful for handl...

read more

Beyond 404: Smart Model Binding Responses in Laravel

<p>Laravel's missing method offers a sophisticated way to customize responses when model binding fails. Instead of showing generic 404 pages, you can ...

read more