for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Auth\Http\Requests;
use Arcanedev\Support\Bases\FormRequest as BaseFormRequest;
/**
* Class FormRequest
*
* @package Arcanesoft\Auth\Http\Requests
* @author ARCANEDEV <[email protected]>
*/
abstract class FormRequest extends BaseFormRequest
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
* The message format.
* @var string
protected $errorsFormat = '<i class="fa fa-fw fa-exclamation-circle"></i> :message';
| Other Methods
* Get the database connection.
* @return string
protected function getDbConnection()
return config('arcanesoft.auth.database.connection', null);
}
* Get the table's prefix.
protected function getPrefixTable()
return config('arcanesoft.auth.database.prefix', 'auth_');