*/ public function rules() { return [ "number" => "required|string", "name" => "required|string|max:50", "unit" => "required|string|max:25", "profit" => "numeric|min:0|max:100", ]; } }