for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Seo\Http\Routes\Admin;
use Arcanedev\Support\Routing\RouteRegistrar;
/**
* Class SpammersRoutes
*
* @package Arcanesoft\Seo\Http\Routes\Admin
* @author ARCANEDEV <[email protected]>
*/
class SpammersRoutes extends RouteRegistrar
{
/* -----------------------------------------------------------------
| Main Methods
| -----------------------------------------------------------------
* Define the routes for the application.
public function map()
$this->prefix('spammers')->name('spammers.')->group(function () {
$this->get('/', 'SpammersController@index')
->name('index'); // admin::seo.spammers.index
});
}