Skip to content

Instantly share code, notes, and snippets.

@noxify
Created November 20, 2016 01:45
Show Gist options
  • Save noxify/695eb23e7c4e25de4e78b826d4b71288 to your computer and use it in GitHub Desktop.
Save noxify/695eb23e7c4e25de4e78b826d4b71288 to your computer and use it in GitHub Desktop.
route list
+--------+----------+--------------------------------------+---------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+--------------------------------------+---------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+
| | GET|HEAD | / | | Closure | web |
| | GET|HEAD | _debugbar/assets/javascript | debugbar.assets.js | Barryvdh\Debugbar\Controllers\AssetController@js | |
| | GET|HEAD | _debugbar/assets/stylesheets | debugbar.assets.css | Barryvdh\Debugbar\Controllers\AssetController@css | |
| | GET|HEAD | _debugbar/clockwork/{id} | debugbar.clockwork | Barryvdh\Debugbar\Controllers\OpenHandlerController@clockwork | |
| | GET|HEAD | _debugbar/open | debugbar.openhandler | Barryvdh\Debugbar\Controllers\OpenHandlerController@handle | |
| | POST | admin/permissions | admin.permissions.store | App\Http\Controllers\Admin\PermissionController@store | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/permissions | admin.permissions.index | App\Http\Controllers\Admin\PermissionController@index | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/permissions/create | admin.permissions.create | App\Http\Controllers\Admin\PermissionController@create | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/permissions/{permissions} | admin.permissions.show | App\Http\Controllers\Admin\PermissionController@show | web,rinvex.fort.backend,can:access-dashboard |
| | DELETE | admin/permissions/{permissions} | admin.permissions.destroy | App\Http\Controllers\Admin\PermissionController@destroy | web,rinvex.fort.backend,can:access-dashboard |
| | PATCH | admin/permissions/{permissions} | admin.permissions.update | App\Http\Controllers\Admin\PermissionController@update | web,rinvex.fort.backend,can:access-dashboard |
| | PUT | admin/permissions/{permissions} | admin.permissions.update | App\Http\Controllers\Admin\PermissionController@update | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/permissions/{permissions}/edit | admin.permissions.edit | App\Http\Controllers\Admin\PermissionController@edit | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/roles | admin.roles.index | App\Http\Controllers\Admin\RoleController@index | web,rinvex.fort.backend,can:access-dashboard |
| | POST | admin/roles | admin.roles.store | App\Http\Controllers\Admin\RoleController@store | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/roles/create | admin.roles.create | App\Http\Controllers\Admin\RoleController@create | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/roles/{roles} | admin.roles.show | App\Http\Controllers\Admin\RoleController@show | web,rinvex.fort.backend,can:access-dashboard |
| | DELETE | admin/roles/{roles} | admin.roles.destroy | App\Http\Controllers\Admin\RoleController@destroy | web,rinvex.fort.backend,can:access-dashboard |
| | PATCH | admin/roles/{roles} | admin.roles.update | App\Http\Controllers\Admin\RoleController@update | web,rinvex.fort.backend,can:access-dashboard |
| | PUT | admin/roles/{roles} | admin.roles.update | App\Http\Controllers\Admin\RoleController@update | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/roles/{roles}/edit | admin.roles.edit | App\Http\Controllers\Admin\RoleController@edit | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/users | admin.users.index | App\Http\Controllers\Admin\UserController@index | web,rinvex.fort.backend,can:access-dashboard |
| | POST | admin/users | admin.users.store | App\Http\Controllers\Admin\UserController@store | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/users/create | admin.users.create | App\Http\Controllers\Admin\UserController@create | web,rinvex.fort.backend,can:access-dashboard |
| | DELETE | admin/users/{users} | admin.users.destroy | App\Http\Controllers\Admin\UserController@destroy | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/users/{users} | admin.users.show | App\Http\Controllers\Admin\UserController@show | web,rinvex.fort.backend,can:access-dashboard |
| | PATCH | admin/users/{users} | admin.users.update | App\Http\Controllers\Admin\UserController@update | web,rinvex.fort.backend,can:access-dashboard |
| | PUT | admin/users/{users} | admin.users.update | App\Http\Controllers\Admin\UserController@update | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | admin/users/{users}/edit | admin.users.edit | App\Http\Controllers\Admin\UserController@edit | web,rinvex.fort.backend,can:access-dashboard |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | auth/github | rinvex.fort.frontend.auth.social.github | Rinvex\Fort\Http\Controllers\Frontend\SocialAuthenticationController@redirectToGithub | web,guest |
| | GET|HEAD | auth/github/callback | rinvex.fort.frontend.auth.social.github.callback | Rinvex\Fort\Http\Controllers\Frontend\SocialAuthenticationController@handleGithubCallback | web,guest |
| | GET|HEAD | auth/login | rinvex.fort.frontend.auth.login | Rinvex\Fort\Http\Controllers\Frontend\AuthenticationController@showLogin | web,guest |
| | POST | auth/login | rinvex.fort.frontend.auth.login.post | Rinvex\Fort\Http\Controllers\Frontend\AuthenticationController@processLogin | web,guest |
| | POST | auth/logout | rinvex.fort.frontend.auth.logout | Rinvex\Fort\Http\Controllers\Frontend\AuthenticationController@logout | web |
| | POST | auth/register | rinvex.fort.frontend.auth.register.post | Rinvex\Fort\Http\Controllers\Frontend\RegistrationController@processRegisteration | web,guest |
| | GET|HEAD | auth/register | rinvex.fort.frontend.auth.register | Rinvex\Fort\Http\Controllers\Frontend\RegistrationController@showRegisteration | web,guest |
| | GET|HEAD | backend | rinvex.fort.backend.dashboard.home | Rinvex\Fort\Http\Controllers\Backend\DashboardController@home | rinvex.fort.backend,can:access-dashboard,auth,can:access-dashboard,dashboard |
| | GET|HEAD | backend/abilities | rinvex.fort.backend.abilities.index | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@index | rinvex.fort.backend,can:access-dashboard,auth,can:list-abilities,abilities |
| | PUT | backend/abilities | rinvex.fort.backend.abilities.bulk | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@bulk | rinvex.fort.backend,can:access-dashboard,auth,can:bulk-abilities,abilities |
| | GET|HEAD | backend/abilities/create | rinvex.fort.backend.abilities.create | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@create | rinvex.fort.backend,can:access-dashboard,auth,can:create-abilities,abilities |
| | POST | backend/abilities/create | rinvex.fort.backend.abilities.store | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@store | rinvex.fort.backend,can:access-dashboard,auth,can:create-abilities,abilities |
| | POST | backend/abilities/export | rinvex.fort.backend.abilities.export | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@export | rinvex.fort.backend,can:access-dashboard,auth,can:export-abilities,abilities |
| | POST | backend/abilities/import | rinvex.fort.backend.abilities.import | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@import | rinvex.fort.backend,can:access-dashboard,auth,can:import-abilities,abilities |
| | DELETE | backend/abilities/{ability} | rinvex.fort.backend.abilities.delete | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@delete | rinvex.fort.backend,can:access-dashboard,auth,can:delete-abilities,abilities |
| | GET|HEAD | backend/abilities/{ability} | rinvex.fort.backend.abilities.show | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@show | rinvex.fort.backend,can:access-dashboard,auth,can:view-abilities,abilities |
| | GET|HEAD | backend/abilities/{ability}/copy | rinvex.fort.backend.abilities.copy | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@copy | rinvex.fort.backend,can:access-dashboard,auth,can:create-abilities,abilities |
| | GET|HEAD | backend/abilities/{ability}/edit | rinvex.fort.backend.abilities.edit | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@edit | rinvex.fort.backend,can:access-dashboard,auth,can:update-abilities,abilities |
| | PUT | backend/abilities/{ability}/edit | rinvex.fort.backend.abilities.update | Rinvex\Fort\Http\Controllers\Backend\AbilitiesController@update | rinvex.fort.backend,can:access-dashboard,auth,can:update-abilities,abilities |
| | GET|HEAD | backend/roles | rinvex.fort.backend.roles.index | Rinvex\Fort\Http\Controllers\Backend\RolesController@index | rinvex.fort.backend,can:access-dashboard,auth,can:list-roles,roles |
| | PUT | backend/roles | rinvex.fort.backend.roles.bulk | Rinvex\Fort\Http\Controllers\Backend\RolesController@bulk | rinvex.fort.backend,can:access-dashboard,auth,can:bulk-roles,roles |
| | GET|HEAD | backend/roles/create | rinvex.fort.backend.roles.create | Rinvex\Fort\Http\Controllers\Backend\RolesController@create | rinvex.fort.backend,can:access-dashboard,auth,can:create-roles,roles |
| | POST | backend/roles/create | rinvex.fort.backend.roles.store | Rinvex\Fort\Http\Controllers\Backend\RolesController@store | rinvex.fort.backend,can:access-dashboard,auth,can:create-roles,roles |
| | POST | backend/roles/export | rinvex.fort.backend.roles.export | Rinvex\Fort\Http\Controllers\Backend\RolesController@export | rinvex.fort.backend,can:access-dashboard,auth,can:export-roles,roles |
| | POST | backend/roles/import | rinvex.fort.backend.roles.import | Rinvex\Fort\Http\Controllers\Backend\RolesController@import | rinvex.fort.backend,can:access-dashboard,auth,can:import-roles,roles |
| | GET|HEAD | backend/roles/{role} | rinvex.fort.backend.roles.show | Rinvex\Fort\Http\Controllers\Backend\RolesController@show | rinvex.fort.backend,can:access-dashboard,auth,can:view-roles,roles |
| | DELETE | backend/roles/{role} | rinvex.fort.backend.roles.delete | Rinvex\Fort\Http\Controllers\Backend\RolesController@delete | rinvex.fort.backend,can:access-dashboard,auth,can:delete-roles,roles |
| | GET|HEAD | backend/roles/{role}/copy | rinvex.fort.backend.roles.copy | Rinvex\Fort\Http\Controllers\Backend\RolesController@copy | rinvex.fort.backend,can:access-dashboard,auth,can:create-roles,roles |
| | PUT | backend/roles/{role}/edit | rinvex.fort.backend.roles.update | Rinvex\Fort\Http\Controllers\Backend\RolesController@update | rinvex.fort.backend,can:access-dashboard,auth,can:update-roles,roles |
| | GET|HEAD | backend/roles/{role}/edit | rinvex.fort.backend.roles.edit | Rinvex\Fort\Http\Controllers\Backend\RolesController@edit | rinvex.fort.backend,can:access-dashboard,auth,can:update-roles,roles |
| | PUT | backend/users | rinvex.fort.backend.users.bulk | Rinvex\Fort\Http\Controllers\Backend\UsersController@bulk | rinvex.fort.backend,can:access-dashboard,auth,can:bulk-users,users |
| | GET|HEAD | backend/users | rinvex.fort.backend.users.index | Rinvex\Fort\Http\Controllers\Backend\UsersController@index | rinvex.fort.backend,can:access-dashboard,auth,can:list-users,users |
| | GET|HEAD | backend/users/create | rinvex.fort.backend.users.create | Rinvex\Fort\Http\Controllers\Backend\UsersController@create | rinvex.fort.backend,can:access-dashboard,auth,can:create-users,users |
| | POST | backend/users/create | rinvex.fort.backend.users.store | Rinvex\Fort\Http\Controllers\Backend\UsersController@store | rinvex.fort.backend,can:access-dashboard,auth,can:create-users,users |
| | POST | backend/users/export | rinvex.fort.backend.users.export | Rinvex\Fort\Http\Controllers\Backend\UsersController@export | rinvex.fort.backend,can:access-dashboard,auth,can:export-users,users |
| | POST | backend/users/import | rinvex.fort.backend.users.import | Rinvex\Fort\Http\Controllers\Backend\UsersController@import | rinvex.fort.backend,can:access-dashboard,auth,can:import-users,users |
| | DELETE | backend/users/{user} | rinvex.fort.backend.users.delete | Rinvex\Fort\Http\Controllers\Backend\UsersController@delete | rinvex.fort.backend,can:access-dashboard,auth,can:delete-users,users |
| | GET|HEAD | backend/users/{user} | rinvex.fort.backend.users.show | Rinvex\Fort\Http\Controllers\Backend\UsersController@show | rinvex.fort.backend,can:access-dashboard,auth,can:view-users,users |
| | GET|HEAD | backend/users/{user}/copy | rinvex.fort.backend.users.copy | Rinvex\Fort\Http\Controllers\Backend\UsersController@copy | rinvex.fort.backend,can:access-dashboard,auth,can:create-users,users |
| | PUT | backend/users/{user}/edit | rinvex.fort.backend.users.update | Rinvex\Fort\Http\Controllers\Backend\UsersController@update | rinvex.fort.backend,can:access-dashboard,auth,can:update-users,users |
| | GET|HEAD | backend/users/{user}/edit | rinvex.fort.backend.users.edit | Rinvex\Fort\Http\Controllers\Backend\UsersController@edit | rinvex.fort.backend,can:access-dashboard,auth,can:update-users,users |
| | POST | passwordreset/process | rinvex.fort.frontend.passwordreset.process | Rinvex\Fort\Http\Controllers\Frontend\PasswordResetController@process | web,guest |
| | GET|HEAD | passwordreset/request | rinvex.fort.frontend.passwordreset.request | Rinvex\Fort\Http\Controllers\Frontend\PasswordResetController@request | web,guest |
| | GET|HEAD | passwordreset/reset | rinvex.fort.frontend.passwordreset.reset | Rinvex\Fort\Http\Controllers\Frontend\PasswordResetController@reset | web,guest |
| | POST | passwordreset/send | rinvex.fort.frontend.passwordreset.send | Rinvex\Fort\Http\Controllers\Frontend\PasswordResetController@send | web,guest |
| | GET|HEAD | user/sessions | rinvex.fort.frontend.user.sessions | Rinvex\Fort\Http\Controllers\Frontend\UserSessionsController@index | web,auth |
| | DELETE | user/sessions/{token?} | rinvex.fort.frontend.user.sessions.flush | Rinvex\Fort\Http\Controllers\Frontend\UserSessionsController@flush | web,auth |
| | POST | user/settings | rinvex.fort.frontend.user.settings.update | Rinvex\Fort\Http\Controllers\Frontend\UserSettingsController@update | web,auth |
| | GET|HEAD | user/settings | rinvex.fort.frontend.user.settings | Rinvex\Fort\Http\Controllers\Frontend\UserSettingsController@edit | web,auth |
| | GET|HEAD | user/twofactor/phone/disable | rinvex.fort.frontend.user.twofactor.phone.disable | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@disablePhone | web,auth |
| | GET|HEAD | user/twofactor/phone/enable | rinvex.fort.frontend.user.twofactor.phone.enable | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@enablePhone | web,auth |
| | GET|HEAD | user/twofactor/totp/backup | rinvex.fort.frontend.user.twofactor.totp.backup | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@backupTotp | web,auth |
| | GET|HEAD | user/twofactor/totp/disable | rinvex.fort.frontend.user.twofactor.totp.disable | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@disableTotp | web,auth |
| | GET|HEAD | user/twofactor/totp/enable | rinvex.fort.frontend.user.twofactor.totp.enable | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@enableTotp | web,auth |
| | POST | user/twofactor/totp/update | rinvex.fort.frontend.user.twofactor.totp.update | Rinvex\Fort\Http\Controllers\Frontend\TwoFactorSettingsController@updateTotp | web,auth |
| | GET|HEAD | verification/email/request | rinvex.fort.frontend.verification.email.request | Rinvex\Fort\Http\Controllers\Frontend\EmailVerificationController@request | web |
| | POST | verification/email/send | rinvex.fort.frontend.verification.email.send | Rinvex\Fort\Http\Controllers\Frontend\EmailVerificationController@send | web |
| | GET|HEAD | verification/email/verify | rinvex.fort.frontend.verification.email.verify | Rinvex\Fort\Http\Controllers\Frontend\EmailVerificationController@verify | web |
| | POST | verification/phone/process | rinvex.fort.frontend.verification.phone.process | Rinvex\Fort\Http\Controllers\Frontend\PhoneVerificationController@process | web |
| | GET|HEAD | verification/phone/request | rinvex.fort.frontend.verification.phone.request | Rinvex\Fort\Http\Controllers\Frontend\PhoneVerificationController@request | web |
| | POST | verification/phone/send | rinvex.fort.frontend.verification.phone.send | Rinvex\Fort\Http\Controllers\Frontend\PhoneVerificationController@send | web |
| | GET|HEAD | verification/phone/verify | rinvex.fort.frontend.verification.phone.verify | Rinvex\Fort\Http\Controllers\Frontend\PhoneVerificationController@verify | web |
+--------+----------+--------------------------------------+---------------------------------------------------+-------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment