We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00ac56 commit 28e00c6Copy full SHA for 28e00c6
src/Common/routes/web.php
@@ -31,6 +31,10 @@
31
Route::post('invoices/bulk-action', 'InvoicesController@bulkAction');
32
Route::resource('invoices', 'InvoicesController');
33
Route::get('invoices/{invoice}/download', 'InvoicesController@download');
34
+Route::get('invoices/{invoice}/stream', 'InvoicesController@stream')
35
+ ->name('streamInvoice')
36
+ ->middleware('signed');
37
+
38
Route::post('invoices/{invoice}/send-invoice', 'InvoicesController@sendInvoice');
39
Route::post('webhooks/{gateway?}', 'WebhooksController');
40
Route::post('currencies/bulk-action', 'CurrenciesController@bulkAction');
0 commit comments