initial commit

This commit is contained in:
2026-03-13 20:49:46 +08:00
parent ce7e3e33cf
commit bd1fa3c17e
3547 changed files with 526508 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateModulePriceRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'module' => 'required|string',
'monthly_price' => 'required|numeric|min:0',
'yearly_price' => 'required|numeric|min:0',
'name' => 'nullable|string|max:255',
'image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048',
];
}
}