1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Http\Requests\TCM;
- use Anik\Form\FormRequest;
- class \PatientUpdateRequest extends FormRequest
- {
- /**
- * Determine if the user is authorized to make this request.
- *
- * @return bool
- */
- protected
- function authorize(): bool
- {
- return false;
- }
- /**
- * Get the validation rules that apply to the request.
- *
- * @return array
- */
- protected
- function rules(): array
- {
- return [
- //
- ];
- }
- }
|