Skip to content

Instantly share code, notes, and snippets.

@timvisee
Created November 5, 2019 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timvisee/f55330a1b5c08a571c3a7312422fe2d2 to your computer and use it in GitHub Desktop.
Save timvisee/f55330a1b5c08a571c3a7312422fe2d2 to your computer and use it in GitHub Desktop.
$ ./artisan route:list
+--------+----------------------------------------+------------------------------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------------------------------------+------------------------------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------+
| | GET|HEAD | / | index | App\Http\Controllers\PagesController@index | web |
| | GET|HEAD | __heartbeat__ | | Closure | web |
| | GET|HEAD | __version__ | | Closure | web |
| | GET|HEAD | _debugbar/assets/javascript | debugbar.assets.js | Barryvdh\Debugbar\Controllers\AssetController@js | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | GET|HEAD | _debugbar/assets/stylesheets | debugbar.assets.css | Barryvdh\Debugbar\Controllers\AssetController@css | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | DELETE | _debugbar/cache/{key}/{tags?} | debugbar.cache.delete | Barryvdh\Debugbar\Controllers\CacheController@delete | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | GET|HEAD | _debugbar/clockwork/{id} | debugbar.clockwork | Barryvdh\Debugbar\Controllers\OpenHandlerController@clockwork | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | GET|HEAD | _debugbar/open | debugbar.openhandler | Barryvdh\Debugbar\Controllers\OpenHandlerController@handle | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | GET|HEAD | _debugbar/telescope/{id} | debugbar.telescope | Barryvdh\Debugbar\Controllers\TelescopeController@show | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure |
| | GET|HEAD | about | about | App\Http\Controllers\PagesController@about | web |
| | GET|HEAD | account/{userId?} | account | App\Http\Controllers\AccountController@show | web,auth,selectUser |
| | GET|HEAD | account/{userId?}/emails | account.emails | App\Http\Controllers\EmailController@show | web,auth,selectUser |
| | DELETE | account/{userId?}/emails/delete/{emailId} | account.emails.doDelete | App\Http\Controllers\EmailController@doDelete | web,auth,selectUser |
| | GET|HEAD | account/{userId?}/emails/delete/{emailId} | account.emails.delete | App\Http\Controllers\EmailController@delete | web,auth,selectUser |
| | POST | account/{userId?}/emails/new | | App\Http\Controllers\EmailController@doCreate | web,auth,selectUser |
| | GET|HEAD | account/{userId?}/emails/new | account.emails.create | App\Http\Controllers\EmailController@create | web,auth,selectUser |
| | GET|HEAD | account/{userId?}/emails/reverify/{emailId} | account.emails.reverify | App\Http\Controllers\EmailController@reverify | web,auth,selectUser |
| | GET|HEAD | ajax/messages-sidebar | ajax.messagesSidebar | App\Http\Controllers\AjaxController@messagesSidebar | web |
| | POST | auth/continue | auth.doContinue | App\Http\Controllers\AuthController@doContinue | web |
| | GET|HEAD | auth/login/{token} | auth.login | App\Http\Controllers\AuthController@login | web |
| | GET|HEAD|POST|PUT|PATCH|DELETE|OPTIONS | b | | Illuminate\Routing\RedirectController | web,auth |
| | GET|HEAD | b/create/{communityId} | bar.create | App\Http\Controllers\BarController@create | web,auth,selectCommunity,perms:app:20 community:20 |
| | POST | b/create/{communityId} | bar.doCreate | App\Http\Controllers\BarController@doCreate | web,auth,selectCommunity,perms:app:20 community:20 |
| | GET|HEAD | b/{barId} | bar.show | App\Http\Controllers\BarController@show | web,auth,selectBar |
| | GET|HEAD | b/{barId}/buy | bar.buy | App\Http\Controllers\BarController@buy | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | POST | b/{barId}/buy | | App\Http\Controllers\BarController@apiBuyBuy | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | GET|HEAD | b/{barId}/buy/members | | App\Http\Controllers\BarController@apiBuyMembers | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | GET|HEAD | b/{barId}/buy/products | | App\Http\Controllers\BarController@apiBuyProducts | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | DELETE | b/{barId}/delete | bar.doDelete | App\Http\Controllers\BarController@doDelete | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:20 |
| | GET|HEAD | b/{barId}/delete | bar.delete | App\Http\Controllers\BarController@delete | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:20 |
| | PUT | b/{barId}/edit | bar.doEdit | App\Http\Controllers\BarController@doEdit | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:20 |
| | GET|HEAD | b/{barId}/edit | bar.edit | App\Http\Controllers\BarController@edit | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:20 |
| | GET|HEAD | b/{barId}/info | bar.info | App\Http\Controllers\BarController@info | web,auth,selectBar |
| | GET|HEAD | b/{barId}/join | bar.join | App\Http\Controllers\BarController@join | web,auth,selectBar |
| | POST | b/{barId}/join | bar.doJoin | App\Http\Controllers\BarController@doJoin | web,auth,selectBar |
| | GET|HEAD | b/{barId}/leave | bar.leave | App\Http\Controllers\BarController@leave | web,auth,selectBar |
| | POST | b/{barId}/leave | bar.doLeave | App\Http\Controllers\BarController@doLeave | web,auth,selectBar |
| | GET|HEAD | b/{barId}/manage | bar.manage | App\Http\Controllers\BarController@manage | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10 |
| | POST | b/{barId}/manage/generate-poster | bar.poster.doGenerate | App\Http\Controllers\BarController@doGeneratePoster | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10 |
| | GET|HEAD | b/{barId}/manage/generate-poster | bar.poster.generate | App\Http\Controllers\BarController@generatePoster | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10 |
| | GET|HEAD | b/{barId}/members | bar.member.index | App\Http\Controllers\BarMemberController@index | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10 |
| | GET|HEAD | b/{barId}/members/{memberId} | bar.member.show | App\Http\Controllers\BarMemberController@show | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10 |
| | GET|HEAD | b/{barId}/members/{memberId}/delete | bar.member.delete | App\Http\Controllers\BarMemberController@delete | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10,perms:app:20 community:20 bar:20 |
| | DELETE | b/{barId}/members/{memberId}/delete | bar.member.doDelete | App\Http\Controllers\BarMemberController@doDelete | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10,perms:app:20 community:20 bar:20 |
| | GET|HEAD | b/{barId}/members/{memberId}/edit | bar.member.edit | App\Http\Controllers\BarMemberController@edit | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10,perms:app:20 community:20 bar:20 |
| | PUT | b/{barId}/members/{memberId}/edit | bar.member.doEdit | App\Http\Controllers\BarMemberController@doEdit | web,auth,selectBar,perms:app:20 community:10 bar:0,perms:app:20 community:20 bar:10,perms:app:20 community:20 bar:20 |
| | GET|HEAD | b/{barId}/products | bar.product.index | App\Http\Controllers\BarProductController@index | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | GET|HEAD | b/{barId}/products/{productId} | bar.product.show | App\Http\Controllers\BarProductController@show | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | POST | b/{barId}/quick-buy | bar.quickBuy | App\Http\Controllers\BarController@quickBuy | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | GET|HEAD | b/{barId}/stats | bar.stats | App\Http\Controllers\BarController@stats | web,auth,selectBar,perms:app:20 community:10 bar:0 |
| | GET|HEAD|POST|PUT|PATCH|DELETE|OPTIONS | c | | Illuminate\Routing\RedirectController | web,auth |
| | POST | c | community.doCreate | App\Http\Controllers\CommunityController@doCreate | web,auth,perms:app:20 |
| | GET|HEAD | c/create | community.create | App\Http\Controllers\CommunityController@create | web,auth,perms:app:20 |
| | GET|HEAD | c/{communityId} | community.show | App\Http\Controllers\CommunityController@show | web,auth,selectCommunity |
| | GET|HEAD | c/{communityId}/delete | community.delete | App\Http\Controllers\CommunityController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:20 |
| | DELETE | c/{communityId}/delete | community.doDelete | App\Http\Controllers\CommunityController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies | community.economy.index | App\Http\Controllers\EconomyController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies | community.economy.doCreate | App\Http\Controllers\EconomyController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/create | community.economy.create | App\Http\Controllers\EconomyController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId} | community.economy.show | App\Http\Controllers\EconomyController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies/{economyId}/currencies | community.economy.currency.doCreate | App\Http\Controllers\EconomyCurrencyController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/currencies | community.economy.currency.index | App\Http\Controllers\EconomyCurrencyController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/currencies/add | community.economy.currency.create | App\Http\Controllers\EconomyCurrencyController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/currencies/{economyCurrencyId} | community.economy.currency.show | App\Http\Controllers\EconomyCurrencyController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | PUT | c/{communityId}/economies/{economyId}/currencies/{economyCurrencyId}/edit | community.economy.currency.doEdit | App\Http\Controllers\EconomyCurrencyController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/currencies/{economyCurrencyId}/edit | community.economy.currency.edit | App\Http\Controllers\EconomyCurrencyController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/currencies/{economyCurrencyId}/remove | community.economy.currency.delete | App\Http\Controllers\EconomyCurrencyController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | DELETE | c/{communityId}/economies/{economyId}/currencies/{economyCurrencyId}/remove | community.economy.currency.doDelete | App\Http\Controllers\EconomyCurrencyController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | DELETE | c/{communityId}/economies/{economyId}/delete | community.economy.doDelete | App\Http\Controllers\EconomyController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/delete | community.economy.delete | App\Http\Controllers\EconomyController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/edit | community.economy.edit | App\Http\Controllers\EconomyController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/edit | community.economy.doEdit | App\Http\Controllers\EconomyController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports | community.economy.balanceimport.index | App\Http\Controllers\BalanceImportSystemController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies/{economyId}/imports/create | community.economy.balanceimport.doCreate | App\Http\Controllers\BalanceImportSystemController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/create | community.economy.balanceimport.create | App\Http\Controllers\BalanceImportSystemController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId} | community.economy.balanceimport.show | App\Http\Controllers\BalanceImportSystemController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | DELETE | c/{communityId}/economies/{economyId}/imports/{systemId}/delete | community.economy.balanceimport.doDelete | App\Http\Controllers\BalanceImportSystemController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/delete | community.economy.balanceimport.delete | App\Http\Controllers\BalanceImportSystemController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/imports/{systemId}/edit | community.economy.balanceimport.doEdit | App\Http\Controllers\BalanceImportSystemController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/edit | community.economy.balanceimport.edit | App\Http\Controllers\BalanceImportSystemController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events | community.economy.balanceimport.event.index | App\Http\Controllers\BalanceImportEventController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies/{economyId}/imports/{systemId}/events/create | community.economy.balanceimport.event.doCreate | App\Http\Controllers\BalanceImportEventController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/create | community.economy.balanceimport.event.create | App\Http\Controllers\BalanceImportEventController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId} | community.economy.balanceimport.event.show | App\Http\Controllers\BalanceImportEventController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes | community.economy.balanceimport.change.index | App\Http\Controllers\BalanceImportChangeController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | PUT | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/approve | community.economy.balanceimport.change.doApproveAll | App\Http\Controllers\BalanceImportChangeController@doApproveAll | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/approve | community.economy.balanceimport.change.approveall | App\Http\Controllers\BalanceImportChangeController@approveAll | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/create | community.economy.balanceimport.change.create | App\Http\Controllers\BalanceImportChangeController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | POST | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/create | community.economy.balanceimport.change.doCreate | App\Http\Controllers\BalanceImportChangeController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId} | community.economy.balanceimport.change.show | App\Http\Controllers\BalanceImportChangeController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/approve | community.economy.balanceimport.change.approve | App\Http\Controllers\BalanceImportChangeController@approve | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/approve | community.economy.balanceimport.change.doApprove | App\Http\Controllers\BalanceImportChangeController@doApprove | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/delete | community.economy.balanceimport.change.delete | App\Http\Controllers\BalanceImportChangeController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | DELETE | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/delete | community.economy.balanceimport.change.doDelete | App\Http\Controllers\BalanceImportChangeController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/undo | community.economy.balanceimport.change.undo | App\Http\Controllers\BalanceImportChangeController@undo | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/changes/{changeId}/undo | community.economy.balanceimport.change.doUndo | App\Http\Controllers\BalanceImportChangeController@doUndo | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/delete | community.economy.balanceimport.event.delete | App\Http\Controllers\BalanceImportEventController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | DELETE | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/delete | community.economy.balanceimport.event.doDelete | App\Http\Controllers\BalanceImportEventController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/edit | community.economy.balanceimport.event.edit | App\Http\Controllers\BalanceImportEventController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/imports/{systemId}/events/{eventId}/edit | community.economy.balanceimport.event.doEdit | App\Http\Controllers\BalanceImportEventController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/pay-services | community.economy.payservice.index | App\Http\Controllers\PaymentServiceController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies/{economyId}/pay-services/add | community.economy.payservice.doCreate | App\Http\Controllers\PaymentServiceController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/pay-services/add | community.economy.payservice.create | App\Http\Controllers\PaymentServiceController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/pay-services/{serviceId} | community.economy.payservice.show | App\Http\Controllers\PaymentServiceController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | DELETE | c/{communityId}/economies/{economyId}/pay-services/{serviceId}/delete | community.economy.payservice.doDelete | App\Http\Controllers\PaymentServiceController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/pay-services/{serviceId}/delete | community.economy.payservice.delete | App\Http\Controllers\PaymentServiceController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/pay-services/{serviceId}/edit | community.economy.payservice.doEdit | App\Http\Controllers\PaymentServiceController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/pay-services/{serviceId}/edit | community.economy.payservice.edit | App\Http\Controllers\PaymentServiceController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products | community.economy.product.index | App\Http\Controllers\ProductController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/economies/{economyId}/products/create | community.economy.product.doCreate | App\Http\Controllers\ProductController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products/create | community.economy.product.create | App\Http\Controllers\ProductController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products/{productId} | community.economy.product.show | App\Http\Controllers\ProductController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | DELETE | c/{communityId}/economies/{economyId}/products/{productId}/delete | community.economy.product.doDelete | App\Http\Controllers\ProductController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products/{productId}/delete | community.economy.product.delete | App\Http\Controllers\ProductController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/products/{productId}/edit | community.economy.product.doEdit | App\Http\Controllers\ProductController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products/{productId}/edit | community.economy.product.edit | App\Http\Controllers\ProductController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/economies/{economyId}/products/{productId}/restore | community.economy.product.doRestore | App\Http\Controllers\ProductController@doRestore | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/economies/{economyId}/products/{productId}/restore | community.economy.product.restore | App\Http\Controllers\ProductController@restore | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/edit | community.edit | App\Http\Controllers\CommunityController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:20 |
| | PUT | c/{communityId}/edit | community.doEdit | App\Http\Controllers\CommunityController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/info | community.info | App\Http\Controllers\CommunityController@info | web,auth,selectCommunity |
| | GET|HEAD | c/{communityId}/join | community.join | App\Http\Controllers\CommunityController@join | web,auth,selectCommunity |
| | POST | c/{communityId}/join | community.doJoin | App\Http\Controllers\CommunityController@doJoin | web,auth,selectCommunity |
| | GET|HEAD | c/{communityId}/leave | community.leave | App\Http\Controllers\CommunityController@leave | web,auth,selectCommunity |
| | POST | c/{communityId}/leave | community.doLeave | App\Http\Controllers\CommunityController@doLeave | web,auth,selectCommunity |
| | GET|HEAD | c/{communityId}/manage | community.manage | App\Http\Controllers\CommunityController@manage | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/bunq-accounts | community.bunqAccount.index | App\Http\Controllers\BunqAccountController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/manage/bunq-accounts/add | community.bunqAccount.doCreate | App\Http\Controllers\BunqAccountController@doCreate | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/bunq-accounts/add | community.bunqAccount.create | App\Http\Controllers\BunqAccountController@create | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/bunq-accounts/{accountId} | community.bunqAccount.show | App\Http\Controllers\BunqAccountController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | DELETE | c/{communityId}/manage/bunq-accounts/{accountId}/delete | community.bunqAccount.doDelete | App\Http\Controllers\BunqAccountController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/bunq-accounts/{accountId}/delete | community.bunqAccount.delete | App\Http\Controllers\BunqAccountController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | PUT | c/{communityId}/manage/bunq-accounts/{accountId}/edit | community.bunqAccount.doEdit | App\Http\Controllers\BunqAccountController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/bunq-accounts/{accountId}/edit | community.bunqAccount.edit | App\Http\Controllers\BunqAccountController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/manage/bunq-accounts/{accountId}/housekeep | community.bunqAccount.doHousekeep | App\Http\Controllers\BunqAccountController@doHousekeep | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | POST | c/{communityId}/manage/generate-poster | community.poster.doGenerate | App\Http\Controllers\CommunityController@doGeneratePoster | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/manage/generate-poster | community.poster.generate | App\Http\Controllers\CommunityController@generatePoster | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/members | community.member.index | App\Http\Controllers\CommunityMemberController@index | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | GET|HEAD | c/{communityId}/members/{memberId} | community.member.show | App\Http\Controllers\CommunityMemberController@show | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10 |
| | DELETE | c/{communityId}/members/{memberId}/delete | community.member.doDelete | App\Http\Controllers\CommunityMemberController@doDelete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/members/{memberId}/delete | community.member.delete | App\Http\Controllers\CommunityMemberController@delete | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/members/{memberId}/edit | community.member.edit | App\Http\Controllers\CommunityMemberController@edit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | PUT | c/{communityId}/members/{memberId}/edit | community.member.doEdit | App\Http\Controllers\CommunityMemberController@doEdit | web,auth,selectCommunity,perms:app:20 community:0,perms:app:20 community:10,perms:app:20 community:20 |
| | GET|HEAD | c/{communityId}/stats | community.stats | App\Http\Controllers\CommunityController@stats | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets | community.wallet.index | App\Http\Controllers\WalletController@index | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId} | community.wallet.list | App\Http\Controllers\WalletController@list | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/create | community.wallet.create | App\Http\Controllers\WalletController@create | web,auth,selectCommunity,perms:app:20 community:0 |
| | POST | c/{communityId}/wallets/{economyId}/create | community.wallet.doCreate | App\Http\Controllers\WalletController@doCreate | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId} | community.wallet.show | App\Http\Controllers\WalletController@show | web,auth,selectCommunity,perms:app:20 community:0 |
| | DELETE | c/{communityId}/wallets/{economyId}/{walletId}/delete | community.wallet.doDelete | App\Http\Controllers\WalletController@doDelete | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/delete | community.wallet.delete | App\Http\Controllers\WalletController@delete | web,auth,selectCommunity,perms:app:20 community:0 |
| | PUT | c/{communityId}/wallets/{economyId}/{walletId}/edit | community.wallet.doEdit | App\Http\Controllers\WalletController@doEdit | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/edit | community.wallet.edit | App\Http\Controllers\WalletController@edit | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/top-up | community.wallet.topUp | App\Http\Controllers\WalletController@topUp | web,auth,selectCommunity,perms:app:20 community:0 |
| | POST | c/{communityId}/wallets/{economyId}/{walletId}/top-up | community.wallet.topUp | App\Http\Controllers\WalletController@doTopUp | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/transactions | community.wallet.transactions | App\Http\Controllers\WalletController@transactions | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/transfer | community.wallet.transfer | App\Http\Controllers\WalletController@transfer | web,auth,selectCommunity,perms:app:20 community:0 |
| | POST | c/{communityId}/wallets/{economyId}/{walletId}/transfer | community.wallet.doTransfer | App\Http\Controllers\WalletController@doTransfer | web,auth,selectCommunity,perms:app:20 community:0 |
| | GET|HEAD | c/{communityId}/wallets/{economyId}/{walletId}/transfer/user | community.wallet.transfer.user | App\Http\Controllers\WalletController@transferUser | web,auth,selectCommunity,perms:app:20 community:0 |
| | POST | callback/bunq | callback.bunq | App\Http\Controllers\Callbacks\BunqController@index | |
| | GET|HEAD | contact | contact | App\Http\Controllers\PagesController@contact | web |
| | GET|HEAD | dashboard | dashboard | App\Http\Controllers\DashboardController@index | web,auth |
| | GET|HEAD | email/preferences | email.preferences | App\Http\Controllers\DashboardController@index | web |
| | POST | email/verify | | App\Http\Controllers\EmailVerifyController@doVerify | web |
| | GET|HEAD | email/verify/{token?} | email.verify | App\Http\Controllers\EmailVerifyController@verify | web |
| | GET|HEAD | explore | explore.community | App\Http\Controllers\ExploreController@communities | web,auth |
| | GET|HEAD | explore/bars | explore.bar | App\Http\Controllers\ExploreController@bars | web,auth |
| | GET|HEAD | language/{locale?} | language | App\Http\Controllers\PagesController@language | web |
| | GET|HEAD | last | last | App\Http\Controllers\PagesController@last | web,auth |
| | GET|HEAD | license | license | App\Http\Controllers\PagesController@license | web |
| | GET|HEAD | license/raw | license.raw | App\Http\Controllers\PagesController@licenseRaw | web |
| | GET|HEAD | login | login | App\Http\Controllers\LoginController@login | web,guest |
| | POST | login | | App\Http\Controllers\LoginController@doLogin | web,guest |
| | GET|HEAD | login/email | login.email | App\Http\Controllers\LoginController@email | web,guest |
| | POST | login/email | | App\Http\Controllers\LoginController@doEmail | web,guest |
| | GET|HEAD | logout | logout | App\Http\Controllers\LogoutController@logout | web |
| | GET|HEAD | manage | app.manage | App\Http\Controllers\AppController@manage | web,perms:app:20 |
| | GET|HEAD | manage/bunq-accounts | app.bunqAccount.index | App\Http\Controllers\AppBunqAccountController@index | web,perms:app:20 |
| | GET|HEAD | manage/bunq-accounts/add | app.bunqAccount.create | App\Http\Controllers\AppBunqAccountController@create | web,perms:app:20 |
| | POST | manage/bunq-accounts/add | app.bunqAccount.doCreate | App\Http\Controllers\AppBunqAccountController@doCreate | web,perms:app:20 |
| | GET|HEAD | manage/bunq-accounts/{accountId} | app.bunqAccount.show | App\Http\Controllers\AppBunqAccountController@show | web,perms:app:20 |
| | DELETE | manage/bunq-accounts/{accountId}/delete | app.bunqAccount.doDelete | App\Http\Controllers\AppBunqAccountController@doDelete | web,perms:app:20 |
| | GET|HEAD | manage/bunq-accounts/{accountId}/delete | app.bunqAccount.delete | App\Http\Controllers\AppBunqAccountController@delete | web,perms:app:20 |
| | PUT | manage/bunq-accounts/{accountId}/edit | app.bunqAccount.doEdit | App\Http\Controllers\AppBunqAccountController@doEdit | web,perms:app:20 |
| | GET|HEAD | manage/bunq-accounts/{accountId}/edit | app.bunqAccount.edit | App\Http\Controllers\AppBunqAccountController@edit | web,perms:app:20 |
| | POST | manage/bunq-accounts/{accountId}/housekeep | app.bunqAccount.doHousekeep | App\Http\Controllers\AppBunqAccountController@doHousekeep | web,perms:app:20 |
| | GET|HEAD | notifications | notification.index | App\Http\Controllers\NotificationController@index | web,auth |
| | POST | notifications/mark-all-as-read | notification.doMarkAllRead | App\Http\Controllers\NotificationController@doMarkAllRead | web,auth |
| | GET|HEAD | notifications/{notificationId}/action/{action} | notification.action | App\Http\Controllers\NotificationController@action | web,auth |
| | GET|HEAD | password/change | password.change | App\Http\Controllers\PasswordChangeController@change | web,auth |
| | POST | password/change | password.change | App\Http\Controllers\PasswordChangeController@doChange | web,auth |
| | POST | password/disable | password.disable | App\Http\Controllers\PasswordChangeController@doDisable | web,auth |
| | GET|HEAD | password/disable | password.disable | App\Http\Controllers\PasswordChangeController@disable | web,auth |
| | GET|HEAD | password/request | password.request | App\Http\Controllers\PasswordForgetController@request | web,guest |
| | POST | password/request | | App\Http\Controllers\PasswordForgetController@doRequest | web,guest |
| | POST | password/reset | | App\Http\Controllers\PasswordResetController@doReset | web |
| | GET|HEAD | password/reset/{token?} | password.reset | App\Http\Controllers\PasswordResetController@reset | web |
| | GET|HEAD | payments | payment.index | App\Http\Controllers\PaymentController@index | web,auth |
| | GET|HEAD | payments/approve | payment.approveList | App\Http\Controllers\PaymentController@approveList | web,auth |
| | GET|HEAD | payments/approve/{paymentId} | payment.approve | App\Http\Controllers\PaymentController@approve | web,auth |
| | POST | payments/approve/{paymentId} | payment.doApprove | App\Http\Controllers\PaymentController@doApprove | web,auth |
| | GET|HEAD | payments/{paymentId} | payment.show | App\Http\Controllers\PaymentController@show | web,auth |
| | GET|HEAD | payments/{paymentId}/cancel | payment.cancel | App\Http\Controllers\PaymentController@cancel | web,auth |
| | DELETE | payments/{paymentId}/cancel | payment.doCancel | App\Http\Controllers\PaymentController@doCancel | web,auth |
| | POST | payments/{paymentId}/pay | payment.doPay | App\Http\Controllers\PaymentController@doPay | web,auth |
| | GET|HEAD | payments/{paymentId}/pay | payment.pay | App\Http\Controllers\PaymentController@pay | web,auth |
| | GET|HEAD | privacy | privacy | App\Http\Controllers\PagesController@privacy | web |
| | PUT | profile/{userId} | profile.update | App\Http\Controllers\ProfileController@update | web,auth,selectUser |
| | GET|HEAD | profile/{userId}/edit | profile.edit | App\Http\Controllers\ProfileController@edit | web,auth,selectUser |
| | POST | register | | App\Http\Controllers\RegisterController@doRegister | web,guest |
| | GET|HEAD | register | register | App\Http\Controllers\RegisterController@register | web,guest |
| | GET|HEAD | terms | terms | App\Http\Controllers\PagesController@terms | web |
| | GET|HEAD | transactions/{transactionId} | transaction.show | App\Http\Controllers\TransactionController@show | web,auth |
| | GET|HEAD | transactions/{transactionId}/mutations/{mutationId} | transaction.mutation.show | App\Http\Controllers\MutationController@show | web,auth |
| | GET|HEAD | transactions/{transactionId}/undo | transaction.undo | App\Http\Controllers\TransactionController@undo | web,auth |
| | DELETE | transactions/{transactionId}/undo | transaction.doUndo | App\Http\Controllers\TransactionController@doUndo | web,auth |
+--------+----------------------------------------+------------------------------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment