51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* AdminUserRequest.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-15 18:58:20
|
|
* @modified 2022-08-15 18:58:20
|
|
*/
|
|
|
|
namespace Beike\Admin\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AdminUserRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
if (! $this->id) {
|
|
$rules['email'] = 'required|email:rfc|unique:admin_users,email';
|
|
} else {
|
|
$rules['email'] = 'required|email:rfc|unique:admin_users,email,' . $this->id;
|
|
}
|
|
|
|
return $rules;
|
|
}
|
|
|
|
public function attributes()
|
|
{
|
|
return [
|
|
'email' => trans('user.email'),
|
|
];
|
|
}
|
|
}
|