Category: Laravel

Laravel documentation , blog and tutorial

Laravel

Send WhatsApp Messages in Laravel With Vonage’s Native SDK

To send WhatsApp messages in Laravel with Vonage’s native SDK, follow these steps: composer require vonage/client VONAGE_API_KEY=your_api_key VONAGE_API_SECRET=your_api_secret VONAGE_WHATSAPP_NUMBER=your_whatsapp_number Replace your_api_key, your_api_secret, and your_whatsapp_number with your Vonage API key, API secret, and WhatsApp-enabled phone number, respectively. Replace +1234567890 with the WhatsApp-enabled phone number of the recipient. Note that you will need to have an active […]

Eloquent Laravel

Tips to minimize Laravel Eloquent’s memory consumption

When utilizing Laravel Eloquent, there are a few methods you may reduce memory use: Chunk technique handle huge datasets by breaking them up into smaller chunks using the chunk technique, which eliminates the need to load the entire dataset into memory at once. Use subqueries to divide complicated inquiries into more digestible chunks, use subqueries. […]

Eloquent Laravel

Tips to Improve Laravel Eloquent Performance with Eager loading

Eloquent performance patterns are tactics and approaches that may be used to improve the performance of an application that employs the Object-Relational Mapping (ORM) component of Laravel Eloquent to communicate with a database. Here are some pointers for enhancing a Laravel application’s speed with Eloquent: Reduce the number of database requests by using eager loading: […]

Back To Top