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

30 lines
521 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use App\Models\BadgeSetting;
class CreateBadgeSettingRequest 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()
{
return BadgeSetting::$rules;
}
}