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\Http\FormRequest as BaseFormRequest;
/**
* Class FormRequest
*
* @package Arcanesoft\Auth\Http\Requests
* @author ARCANEDEV <[email protected]>
*/
abstract class FormRequest extends BaseFormRequest
{
/* -----------------------------------------------------------------
| 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_');