Resources and stories center

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

Python - How to install python app in venv in mac

Published by Theodoros Kafantaris

Sep 18, 2024

Step 1: Install pippip is the official Python package installer, which allows you to install and manage Python libraries and packages. In most cases, Python 3 comes with pip pre-installed on macOS. You can check if pip is installed by...

How to setup ChromeDriver on Mac

Published by Theodoros Kafantaris

Sep 12, 2024

First of all, we visit the following link to download the relevant chromedriver for our Operating system.https://googlechromelabs.github.io/chrome-for-testing/#stableimage.png 273.13 KBimage.png 461.43 KBNow that we have downloaded the relevant chromedriver, we are opening the terminal in this folder.image.png 372.09 KBAnd now we...

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...

Ⓒ 2024. All rights reserved by atomic