Resources and stories center

Explore the latest in PHP, Laravel web development and Python scrapping!

Laravel - How to Create a Laravel Livewire Modal

Published by Theodoros Kafantaris

Jan 06, 2025

IntroductionModals are a common feature in web applications, providing a way to display content in a focused view while dimming the rest of the page. Using Laravel Livewire, you can create dynamic modals that respond to user interactions without requiring...

Laravel - How to send email from tinker/cli

Published by Theodoros Kafantaris

Jul 10, 2024

When I setup my SMTP config in .env file, I want to check immediately if it works.First of all, I connect to tinker cli.php artisan tinkerThe easiest way that I found is to execute from tinker the following command.Mail::raw('Hello World!',...

Laravel - How to send email

Published by Theodoros Kafantaris

Jul 08, 2024

In this tutorial, we will implement sending functionality of laravel. Laravel makes it a breeze to integrate email functionality into your project.Configuring Mail ServicesLaravel makes configuring email services incredibly simple. Open the .env file and configure your mail settings. You...

Laravel - How to clear cache

Published by Theodoros Kafantaris

Jun 05, 2024

One Command Clear all CacheIt clears all the cached data that Laravel may have generated to optimize performance. This includes clearing the application cache, route cache, configuration cache, compiled views, and other cached data.php artisan optimize:clearOutput:image.png 53.71 KBClear Application CacheIt...

Ⓒ 2025. All rights reserved by atomic