How to Send email with Attachement in Laravel 5.8
In this tutorial iβm going to describe how to send attachement in laravel, please follow some easy steps define below. First letβs go to install laravel project composer create-project laravel/laravel learning-project “5.8.*” lets go to .env folder and put database name and connect to database. DB_CONNECTION=mysqlDB_HOST=127.0.0.1DB_PORT=3306DB_DATABASE=learning-projectDB_USERNAME=rootDB_PASSWORD= Now migrate the table php artisan migrate Create a Mailable class … Read more