Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. Route::get('debugmailsend',function(){
  2.  
  3.     $order   = App\Order::whereId( 1 )->get()->first();  
  4.    
  5.     Illuminate\Support\Facades\Mail::to( $order->student->email )->send( new App\Mail\NotifyStudent($order) );
  6.  
  7.     dd("email enviado");
  8.  
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement