Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
tbfguestbe.tbf.ro
/
app
/
Http
/
Requests
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
InstanceFormRequest.php
| Size :
2.57
KB
Copy
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class InstanceFormRequest extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string> */ public function rules(): array { return [ 'name' => 'nullable|string', 'options' => 'nullable|array', 'website' => 'nullable|string', 'logo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:2048', 'color' => 'nullable|string', 'phone' => 'nullable|string', 'email' => 'nullable|email:rfc,dns', 'description' => 'nullable|string', 'experience' => 'nullable|integer', 'employee_number' => 'nullable|integer', 'director_number' => 'nullable|integer', 'turnover' => 'nullable|numeric', 'important_partners' => 'nullable|string', 'important_collaborators' => 'nullable|string', 'mission' => 'nullable|string', 'vision' => 'nullable|string', 'values' => 'nullable|string', 'total_customers' => 'nullable|integer', 'products_and_services' => 'nullable|string', 'customer_feedback' => 'nullable|string', 'industry_innovations' => 'nullable|string', 'certifications' => 'nullable|string', 'awards' => 'nullable|string', 'knowhow' => 'nullable|string', 'customer_feedback_positive' => 'nullable|string', 'customer_feedback_negative' => 'nullable|string', 'customer_feedback_mixt' => 'nullable|string', 'enable_management' => 'nullable|boolean', 'enable_sales' => 'nullable|boolean', 'enable_instruction' => 'nullable|boolean', 'enable_responsibility' => 'nullable|boolean', 'enable_procedure' => 'nullable|boolean', 'enable_recruitment' => 'nullable|boolean', 'disable_account' => 'nullable|boolean', ]; } }
Back