Valerio

PHP array_map for associative array – Fast Tips

October 25, 2024 If you are here you are probably already aware that the array_map function doesn't allow access to array keys in the callback. Having the key other than the value can be extremely useful dealing with ...

Laravel custom helper functions – Fast Tips

October 22, 2024 Helper functions are quite popular among Laravel developers. They provide access to some clever algorithms ready to be used in your code using a single statement. Probably the most known helper functi...

How to enable/disable PHP native functions – php.ini Tutorial

October 11, 2024 In this article I want to give you the step by step procedure to enable or disable php native functions editing the “disable_functions” directive in the php.ini file. Sometimes the default PHP configu...

Logging Database Queries with Eloquent ORM and Laravel – Fast Tips

October 2, 2024 Having a more clear understanding of what your application really does during its execution is an increasing necessity. Logging the raw database queries generated by your preferred ORM is one of the m...

Laravel Http Client Overview and Monitoring

September 30, 2024 Laravel HTTP client was introduced starting from version 10 of the framework, and then also made available in all previous versions. It stands out as a powerful tool for making HTTP requests and handl...

Laravel Form Request and Data Validation Tutorial

September 27, 2024 In this article I will talk about Laravel Form Request to send data from your application frontend to the backend. In web applications, data is usually sent via HTML forms: the data entered by the use...

Upload File in Laravel

September 19, 2024 You can upload file in Laravel using its beautiful unified API to interact with many different types of storage systems, from local disk to remote object storage like S3. As many other Laravel compone...

Laravel Mailable Tutorial

September 17, 2024 Sending emails in Laravel requires the collaboration between three components: Laravel mailer, Laravel mailable classes, and the Mail facade. Each of the three deals with a different aspect of the lif...

Laravel Auth Routes Tutorial

September 14, 2024 Laravel auth routes is one of the essential features of the Laravel framework. Using middlewares you can implement different authentication strategies and attach them to different parts of your backen...

Laravel Livewire: What it is, and how to use it in your web app

September 11, 2024 Livewire is one of the most important projects in the Laravel ecosystem specifically targeted to frontend development. Livewire v3 has been recently released, so let’s explore what Livewire is, and wh...

1 2 3 4 5 6