Am trying to send email with Laravel 5.4
But its showing
View [Mail] not found.
My Route code view below :
<?php
Route::get('/', function () {
return view('welcome');
});
Route::Get('/email','EmailController@index');
My EmailController Code below :
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Mail;
class EmailController extends Controller{
public function index()
{
Mail::send(['text'=>'Mail'],['name','Ripon Uddin Arman'],function($message){
$message->to('rislam252@gmail.com')->subject("Email Testing with Laravel");
$message->from('clhg52@gmail.com','Creative Losser Hopeless Genius');
});
}
}
How can i solve this ?