Skip to content

Instantly share code, notes, and snippets.

@MrAtiebatie
Created September 19, 2019 19:26
Show Gist options
  • Save MrAtiebatie/096b030b351cd571cf36e1fed09c3411 to your computer and use it in GitHub Desktop.
Save MrAtiebatie/096b030b351cd571cf36e1fed09c3411 to your computer and use it in GitHub Desktop.
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
$router->get('/notification', function () {
$notification = new \App\Notifications\InvoicePaid;
return $notification->toMail('test@example.com');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment