|string> */ public function rules(): array { return [ 'status' => 'integer|in:0,1', 'type' => 'integer|in:1,2,3', 'team_num' => 'numeric', 'staff_num' => 'numeric', 'phone' => 'string|max:50', 'responsible_name' => 'string|max:255', 'responsible_mobile' => 'string|max:50', 'successor_name' => 'string|max:255', 'successor_mobile' => 'string|max:50', 'machines_light' => 'numeric', 'machines_sheavy' => 'numeric', 'machines_heavy' => 'numeric', 'lat' => 'numeric', 'lng' => 'numeric', 'lat_from' => 'numeric', 'lng_from' => 'numeric', 'lat_to' => 'numeric', 'lng_to' => 'numeric', 'color' => 'numeric', 'geometry' => 'numeric', 'overview_files_1' => 'file|mimes:jpg,jpeg,png,pdf|max:5120', 'overview_files_2' => 'file|mimes:jpg,jpeg,png,pdf|max:5120', 'overview_files_3' => 'file|mimes:jpg,jpeg,png,pdf|max:5120', 'overview_files_4' => 'file|mimes:jpg,jpeg,png,pdf|max:5120', 'overview_files_5' => 'file|mimes:jpg,jpeg,png,pdf|max:5120', ]; } }