35 lines
647 B
PHP
35 lines
647 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin\Account;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateAppearanceRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return auth()->check();
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'appearance' => ['required', Rule::in(['light', 'dark', 'system'])],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'appearance' => 'tampilan',
|
|
];
|
|
}
|
|
}
|