bajapro/Penilaian-Esai/app/Http/Requests/UpdateBadgeSettingRequest.php
2025-06-07 16:18:13 +07:00

32 lines
555 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use App\Models\BadgeSetting;
class UpdateBadgeSettingRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
$rules = BadgeSetting::$rules;
return $rules;
}
}