⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.177
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
ctaacademy
/
www
/
app
/
Http
/
Requests
/
Frontend
/
View File Name :
StudentBioUpdateRequest.php
|string> */ public function rules(): array { return [ 'designation' => ['required', 'string', 'max:255'], 'bio' => ['required', 'string', 'max:2000'], 'short_bio' => ['required', 'string', 'max:300'], ]; } function messages() : array { return [ 'designation.required' => __('The designation field is required'), 'designation.string' => __('The designation must be a string'), 'designation.max' => __('The designation may not be greater than 255 characters.'), 'bio.required' => __('The bio field is required'), 'bio.string' => __('The bio must be a string'), 'bio.max' => __('The bio may not be greater than 2000 characters.'), 'short_bio.required' => __('The short bio field is required'), 'short_bio.string' => __('The short bio must be a string'), 'short_bio.max' => __('The short bio may not be greater than 300 characters.'), ]; } }