Files
sam-api/app/Http/Requests/TenantSetting/GetSettingsRequest.php

21 lines
342 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Http\Requests\TenantSetting;
use Illuminate\Foundation\Http\FormRequest;
class GetSettingsRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'group' => 'sometimes|string|max:50',
];
}
}